aboutsummaryrefslogtreecommitdiffstats
path: root/components/script/layout_interface.rs
diff options
context:
space:
mode:
authorMs2ger <Ms2ger@gmail.com>2015-11-05 16:11:52 +0100
committerMs2ger <Ms2ger@gmail.com>2015-11-05 16:17:51 +0100
commitad33d920e702b4fb0752d83e10b9a6073d2cb66b (patch)
treed28500b65c05d2a9d57cdfa112877ef556f6c50a /components/script/layout_interface.rs
parent5cd250602ffa43d87c8131456be089e749887a3a (diff)
downloadservo-ad33d920e702b4fb0752d83e10b9a6073d2cb66b.tar.gz
servo-ad33d920e702b4fb0752d83e10b9a6073d2cb66b.zip
Remove the unused PipelineExitType field from layout_interface::Msg::ExitNow.
Diffstat (limited to 'components/script/layout_interface.rs')
-rw-r--r--components/script/layout_interface.rs4
1 files changed, 2 insertions, 2 deletions
diff --git a/components/script/layout_interface.rs b/components/script/layout_interface.rs
index afc7adedbd3..7a735d22737 100644
--- a/components/script/layout_interface.rs
+++ b/components/script/layout_interface.rs
@@ -14,7 +14,7 @@ use ipc_channel::ipc::{IpcReceiver, IpcSender};
use libc::uintptr_t;
use msg::compositor_msg::Epoch;
use msg::compositor_msg::LayerId;
-use msg::constellation_msg::{ConstellationChan, Failure, PipelineExitType, PipelineId};
+use msg::constellation_msg::{ConstellationChan, Failure, PipelineId};
use msg::constellation_msg::{WindowSizeData};
use net_traits::PendingAsyncLoad;
use net_traits::image_cache_task::ImageCacheTask;
@@ -78,7 +78,7 @@ pub enum Msg {
/// Requests that the layout task immediately shut down. There must be no more nodes left after
/// this, or layout will crash.
- ExitNow(PipelineExitType),
+ ExitNow,
/// Get the last epoch counter for this layout task.
GetCurrentEpoch(IpcSender<Epoch>),