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/script/dom/virtualmethods.rs | |
parent | 34b71e55f51c978911041f88e64ec56512ca7c1f (diff) | |
download | servo-9fd823e44983fc0de5abc28ee898df6257f0f5d0.tar.gz servo-9fd823e44983fc0de5abc28ee898df6257f0f5d0.zip |
replace InheritTypes imports with inheritance imports
Diffstat (limited to 'components/script/dom/virtualmethods.rs')
-rw-r--r-- | components/script/dom/virtualmethods.rs | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/components/script/dom/virtualmethods.rs b/components/script/dom/virtualmethods.rs index 1e1ee2f03d1..d7ccd181e9d 100644 --- a/components/script/dom/virtualmethods.rs +++ b/components/script/dom/virtualmethods.rs @@ -3,9 +3,9 @@ * file, You can obtain one at http://mozilla.org/MPL/2.0/. */ use dom::attr::{Attr, AttrValue}; -use dom::bindings::codegen::InheritTypes::ElementTypeId; -use dom::bindings::codegen::InheritTypes::HTMLElementTypeId; -use dom::bindings::codegen::InheritTypes::NodeTypeId; +use dom::bindings::inheritance::ElementTypeId; +use dom::bindings::inheritance::HTMLElementTypeId; +use dom::bindings::inheritance::NodeTypeId; use dom::bindings::inheritance::Castable; use dom::document::Document; use dom::element::{AttributeMutation, Element}; |