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

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

Issue 552733002: bindings: Cleans up V8{HTML,SVG}ElementWrapperFactory. (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Created 6 years, 3 months 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 | « Source/bindings/core/v8/CustomElementConstructorBuilder.cpp ('k') | Source/build/scripts/scripts.gni » ('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 903d2fc7ca47782f11eefe1c8c3ef889c010a1c9..9c607e6a207666fd358f91a8e325cf9d31c09b19 100755
--- a/Source/build/scripts/make_element_factory.py
+++ b/Source/build/scripts/make_element_factory.py
@@ -63,8 +63,6 @@ class MakeElementFactoryWriter(MakeQualifiedNamesWriter):
self._outputs.update({
(self.namespace + 'ElementFactory.h'): self.generate_factory_header,
(self.namespace + 'ElementFactory.cpp'): self.generate_factory_implementation,
- ('V8' + self.namespace + 'ElementWrapperFactory.h'): self.generate_wrapper_factory_header,
- ('V8' + self.namespace + 'ElementWrapperFactory.cpp'): self.generate_wrapper_factory_implementation,
})
fallback_interface = self.tags_in_file.parameters['fallbackInterfaceName'].strip('"')
@@ -94,14 +92,6 @@ class MakeElementFactoryWriter(MakeQualifiedNamesWriter):
def generate_factory_implementation(self):
return self._template_context
- @template_expander.use_jinja('ElementWrapperFactory.h.tmpl', filters=filters)
- def generate_wrapper_factory_header(self):
- return self._template_context
-
- @template_expander.use_jinja('ElementWrapperFactory.cpp.tmpl', filters=filters)
- def generate_wrapper_factory_implementation(self):
- return self._template_context
-
def _interface(self, tag):
if tag['interfaceName']:
return tag['interfaceName']
« no previous file with comments | « Source/bindings/core/v8/CustomElementConstructorBuilder.cpp ('k') | Source/build/scripts/scripts.gni » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698