diff options
author | rohan.prinja <rohan.prinja@samsung.com> | 2015-10-29 18:09:41 +0900 |
---|---|---|
committer | rohan.prinja <rohan.prinja@samsung.com> | 2015-10-30 20:26:30 +0900 |
commit | 9fd823e44983fc0de5abc28ee898df6257f0f5d0 (patch) | |
tree | 887b2c776fa5f9bbbc29038fb8246879de479526 /components/layout/construct.rs | |
parent | 34b71e55f51c978911041f88e64ec56512ca7c1f (diff) | |
download | servo-9fd823e44983fc0de5abc28ee898df6257f0f5d0.tar.gz servo-9fd823e44983fc0de5abc28ee898df6257f0f5d0.zip |
replace InheritTypes imports with inheritance imports
Diffstat (limited to 'components/layout/construct.rs')
-rw-r--r-- | components/layout/construct.rs | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/components/layout/construct.rs b/components/layout/construct.rs index e8f9b8df81c..32f540e1d36 100644 --- a/components/layout/construct.rs +++ b/components/layout/construct.rs @@ -33,8 +33,8 @@ use inline::{InlineFragmentNodeInfo, LAST_FRAGMENT_OF_ELEMENT}; use list_item::{ListItemFlow, ListStyleTypeContent}; use multicol::MulticolFlow; use parallel; -use script::dom::bindings::codegen::InheritTypes::{CharacterDataTypeId, ElementTypeId}; -use script::dom::bindings::codegen::InheritTypes::{HTMLElementTypeId, NodeTypeId}; +use script::dom::bindings::inheritance::{CharacterDataTypeId, ElementTypeId}; +use script::dom::bindings::inheritance::{HTMLElementTypeId, NodeTypeId}; use script::dom::htmlobjectelement::is_image_data; use std::borrow::ToOwned; use std::collections::LinkedList; |