Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(405)

Unified Diff: Source/build/scripts/make_element_factory.py

Issue 66533005: Remove mapToTagName support from ElementFactory generation (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Created 7 years, 1 month ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « no previous file | Source/build/scripts/templates/ElementFactory.cpp.tmpl » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: Source/build/scripts/make_element_factory.py
diff --git a/Source/build/scripts/make_element_factory.py b/Source/build/scripts/make_element_factory.py
index 017e47d0aaaefb53343f44445f0cce0fa5baaf11..75cd7746b3f30f83b02ef86d713782dbe63af92e 100755
--- a/Source/build/scripts/make_element_factory.py
+++ b/Source/build/scripts/make_element_factory.py
@@ -43,7 +43,6 @@ class MakeElementFactoryWriter(MakeQualifiedNamesWriter):
'constructorNeedsFormElement': None,
'contextConditional': None,
'interfaceName': None,
- 'mapToTagName': None,
'noConstructor': None,
'runtimeEnabled': None,
})
@@ -114,7 +113,7 @@ class MakeElementFactoryWriter(MakeQualifiedNamesWriter):
return self._interface(tag)
def _has_js_interface(self, tag):
- return not tag['mapToTagName'] and not tag['noConstructor'] and self._js_interface(tag) != ('%sElement' % self.namespace)
+ return not tag['noConstructor'] and self._js_interface(tag) != ('%sElement' % self.namespace)
if __name__ == "__main__":
« no previous file with comments | « no previous file | Source/build/scripts/templates/ElementFactory.cpp.tmpl » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698