diff options
author | Bobby Holley <bobbyholley@gmail.com> | 2016-10-28 14:01:07 -0700 |
---|---|---|
committer | Bobby Holley <bobbyholley@gmail.com> | 2016-10-29 14:58:07 -0700 |
commit | be89f736751d63307c01750f98d5c07a1e940add (patch) | |
tree | 6cd08307470e9cc337906794fc853205e7c784e4 /components/style/binding_tools | |
parent | 5442fbec3f5a4d00c6cc61adfefc0ae747194db2 (diff) | |
download | servo-be89f736751d63307c01750f98d5c07a1e940add.tar.gz servo-be89f736751d63307c01750f98d5c07a1e940add.zip |
Rename NodeData and associated data structures to Element*.
MozReview-Commit-ID: 96VsmsoZtjZ
Diffstat (limited to 'components/style/binding_tools')
-rwxr-xr-x | components/style/binding_tools/regen.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/components/style/binding_tools/regen.py b/components/style/binding_tools/regen.py index 0aa1a62c532..e18bfbc6d78 100755 --- a/components/style/binding_tools/regen.py +++ b/components/style/binding_tools/regen.py @@ -67,7 +67,7 @@ COMPILATION_TARGETS = { }, "raw_lines": [ "use atomic_refcell::AtomicRefCell;", - "use data::NodeData;", + "use data::ElementData;", "pub use nsstring::nsStringRepr as nsString;" ], "blacklist_types": ["nsString"], @@ -226,7 +226,7 @@ COMPILATION_TARGETS = { }, { "generic": False, "gecko": "ServoNodeData", - "servo": "AtomicRefCell<NodeData>", + "servo": "AtomicRefCell<ElementData>", } ], }, |