diff options
author | Ms2ger <Ms2ger@gmail.com> | 2016-06-16 00:51:23 +0100 |
---|---|---|
committer | Ms2ger <Ms2ger@gmail.com> | 2016-06-20 19:08:06 +0200 |
commit | 68d603a6d0a059965d2fa604d153b531cb16d404 (patch) | |
tree | cca1ff5fd05f7bc94682acf8ff00f50dafab11a5 /components/script/dom/window.rs | |
parent | 0616a60fd96199426d04cd75467906fca243af9c (diff) | |
download | servo-68d603a6d0a059965d2fa604d153b531cb16d404.tar.gz servo-68d603a6d0a059965d2fa604d153b531cb16d404.zip |
Move TrustedNodeAddress to script_layout_interface.
Diffstat (limited to 'components/script/dom/window.rs')
-rw-r--r-- | components/script/dom/window.rs | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/components/script/dom/window.rs b/components/script/dom/window.rs index 03fbe2b2a2b..f2f3195c875 100644 --- a/components/script/dom/window.rs +++ b/components/script/dom/window.rs @@ -31,7 +31,7 @@ use dom::element::Element; use dom::eventtarget::EventTarget; use dom::location::Location; use dom::navigator::Navigator; -use dom::node::{Node, TrustedNodeAddress, from_untrusted_node_address, window_from_node}; +use dom::node::{Node, from_untrusted_node_address, window_from_node}; use dom::performance::Performance; use dom::screen::Screen; use dom::storage::Storage; @@ -59,6 +59,7 @@ use profile_traits::time::{ProfilerCategory, TimerMetadata, TimerMetadataFrameTy use profile_traits::time::{ProfilerChan, TimerMetadataReflowType, profile}; use reporter::CSSErrorReporter; use rustc_serialize::base64::{FromBase64, STANDARD, ToBase64}; +use script_layout_interface::TrustedNodeAddress; use script_runtime::{ScriptChan, ScriptPort}; use script_thread::SendableMainThreadScriptChan; use script_thread::{MainThreadScriptChan, MainThreadScriptMsg, RunnableWrapper}; |