diff options
author | Ms2ger <Ms2ger@gmail.com> | 2016-06-16 02:17:33 +0100 |
---|---|---|
committer | Ms2ger <Ms2ger@gmail.com> | 2016-06-20 19:08:08 +0200 |
commit | 7bbabf27669463563d6743458bf248c2611d621e (patch) | |
tree | c3f428fd8122ca42e62c3fb9b452ea9896938a4b /components/script/layout_wrapper.rs | |
parent | 86bfd2cc9f14b95c3b6376c6b723ddf77af3fc35 (diff) | |
download | servo-7bbabf27669463563d6743458bf248c2611d621e.tar.gz servo-7bbabf27669463563d6743458bf248c2611d621e.zip |
Remove unused re-exports from layout_interface.
Diffstat (limited to 'components/script/layout_wrapper.rs')
-rw-r--r-- | components/script/layout_wrapper.rs | 15 |
1 files changed, 9 insertions, 6 deletions
diff --git a/components/script/layout_wrapper.rs b/components/script/layout_wrapper.rs index 1ef916ea500..2fc6991310e 100644 --- a/components/script/layout_wrapper.rs +++ b/components/script/layout_wrapper.rs @@ -30,13 +30,16 @@ #![allow(unsafe_code)] +use dom::bindings::inheritance::{CharacterDataTypeId, ElementTypeId}; +use dom::bindings::inheritance::{HTMLElementTypeId, NodeTypeId}; +use dom::bindings::js::LayoutJS; +use dom::characterdata::LayoutCharacterDataHelpers; +use dom::document::{Document, LayoutDocumentHelpers}; +use dom::element::{Element, LayoutElementHelpers, RawLayoutElementHelpers}; +use dom::node::{CAN_BE_FRAGMENTED, HAS_CHANGED, HAS_DIRTY_DESCENDANTS, IS_DIRTY}; +use dom::node::{Node, LayoutNodeHelpers}; +use dom::text::Text; use gfx_traits::ByteIndex; -use layout_interface::{CAN_BE_FRAGMENTED, HAS_CHANGED, HAS_DIRTY_DESCENDANTS, IS_DIRTY}; -use layout_interface::{CharacterDataTypeId, Document, Element, ElementTypeId}; -use layout_interface::{HTMLElementTypeId, LayoutCharacterDataHelpers}; -use layout_interface::{LayoutDocumentHelpers, LayoutElementHelpers, LayoutJS}; -use layout_interface::{LayoutNodeHelpers, Node, NodeTypeId}; -use layout_interface::{RawLayoutElementHelpers, Text}; use msg::constellation_msg::PipelineId; use range::Range; use script_layout_interface::restyle_damage::RestyleDamage; |