diff options
author | rohan.prinja <rohan.prinja@samsung.com> | 2015-10-27 14:56:41 +0900 |
---|---|---|
committer | rohan.prinja <rohan.prinja@samsung.com> | 2015-10-30 20:24:42 +0900 |
commit | bb2536cd014676263f5bfd5d98cf0fc69d2abee0 (patch) | |
tree | 0381f75788884d593358a7f4ea20c293999d3bee /components/script/script_task.rs | |
parent | 00b60b93860d32e1c5aaf0f9b4a2ce5110880652 (diff) | |
download | servo-bb2536cd014676263f5bfd5d98cf0fc69d2abee0.tar.gz servo-bb2536cd014676263f5bfd5d98cf0fc69d2abee0.zip |
move Castable into dom::bindings::inheritance
Diffstat (limited to 'components/script/script_task.rs')
-rw-r--r-- | components/script/script_task.rs | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/components/script/script_task.rs b/components/script/script_task.rs index 30bb371667b..7efed232426 100644 --- a/components/script/script_task.rs +++ b/components/script/script_task.rs @@ -23,8 +23,9 @@ use devtools_traits::{DevtoolScriptControlMsg, DevtoolsPageInfo}; use document_loader::{DocumentLoader, LoadType}; use dom::bindings::cell::DOMRefCell; use dom::bindings::codegen::Bindings::DocumentBinding::{DocumentMethods, DocumentReadyState}; -use dom::bindings::conversions::{Castable, FromJSValConvertible, StringificationBehavior}; +use dom::bindings::conversions::{FromJSValConvertible, StringificationBehavior}; use dom::bindings::global::GlobalRef; +use dom::bindings::inheritance::Castable; use dom::bindings::js::{JS, RootCollection, trace_roots}; use dom::bindings::js::{Root, RootCollectionPtr, RootedReference}; use dom::bindings::refcounted::{LiveDOMReferences, Trusted, TrustedReference, trace_refcounted_objects}; |