diff options
Diffstat (limited to 'components/script_traits')
-rw-r--r-- | components/script_traits/Cargo.toml | 3 | ||||
-rw-r--r-- | components/script_traits/lib.rs | 3 |
2 files changed, 1 insertions, 5 deletions
diff --git a/components/script_traits/Cargo.toml b/components/script_traits/Cargo.toml index 9b41ae54ec2..d33e0ff6b98 100644 --- a/components/script_traits/Cargo.toml +++ b/components/script_traits/Cargo.toml @@ -19,9 +19,6 @@ path = "../util" [dependencies.devtools_traits] path = "../devtools_traits" -[dependencies.webdriver_traits] -path = "../webdriver_traits" - [dependencies.geom] git = "https://github.com/servo/rust-geom" diff --git a/components/script_traits/lib.rs b/components/script_traits/lib.rs index 188c5effe28..960e60a6af0 100644 --- a/components/script_traits/lib.rs +++ b/components/script_traits/lib.rs @@ -15,7 +15,6 @@ extern crate msg; extern crate net_traits; extern crate util; extern crate url; -extern crate webdriver_traits; use devtools_traits::DevtoolsControlChan; use libc::c_void; @@ -23,12 +22,12 @@ use msg::constellation_msg::{ConstellationChan, PipelineId, Failure, WindowSizeD use msg::constellation_msg::{LoadData, SubpageId, Key, KeyState, KeyModifiers}; use msg::constellation_msg::{MozBrowserEvent, PipelineExitType}; use msg::compositor_msg::ScriptListener; +use msg::webdriver_msg::WebDriverScriptCommand; use net_traits::ResourceTask; use net_traits::image_cache_task::ImageCacheTask; use net_traits::storage_task::StorageTask; use std::any::Any; use std::sync::mpsc::{Sender, Receiver}; -use webdriver_traits::WebDriverScriptCommand; use url::Url; use geom::point::Point2D; |