aboutsummaryrefslogtreecommitdiffstats
path: root/components/msg/lib.rs
diff options
context:
space:
mode:
Diffstat (limited to 'components/msg/lib.rs')
-rw-r--r--components/msg/lib.rs10
1 files changed, 0 insertions, 10 deletions
diff --git a/components/msg/lib.rs b/components/msg/lib.rs
index 473793b1bed..13a50e6a962 100644
--- a/components/msg/lib.rs
+++ b/components/msg/lib.rs
@@ -7,7 +7,6 @@
#[macro_use]
extern crate bitflags;
-extern crate cssparser;
extern crate euclid;
extern crate hyper;
extern crate ipc_channel;
@@ -20,12 +19,3 @@ extern crate util;
pub mod compositor_msg;
pub mod constellation_msg;
pub mod webdriver_msg;
-
-use constellation_msg::PipelineId;
-use cssparser::{Parser, SourcePosition};
-
-pub trait ParseErrorReporter {
- fn report_error(&self, input: &mut Parser, position: SourcePosition, message: &str);
- fn clone(&self) -> Box<ParseErrorReporter + Send + Sync>;
- fn pipeline(&self) -> PipelineId;
-}