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

Unified Diff: Source/bindings/scripts/unstable/v8_interface.py

Issue 82693003: IDL compiler: [CustomToV8] interface (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Rebased, remove excess files Created 7 years 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/scripts/code_generator_v8.pm ('k') | Source/bindings/templates/interface.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: Source/bindings/scripts/unstable/v8_interface.py
diff --git a/Source/bindings/scripts/unstable/v8_interface.py b/Source/bindings/scripts/unstable/v8_interface.py
index 15cc815265731e03ea256a296916de30bd6c74d7..9b341177de37946d84b5703df2f7a6d1ad945717 100644
--- a/Source/bindings/scripts/unstable/v8_interface.py
+++ b/Source/bindings/scripts/unstable/v8_interface.py
@@ -50,7 +50,6 @@ INTERFACE_H_INCLUDES = set([
])
INTERFACE_CPP_INCLUDES = set([
'RuntimeEnabledFeatures.h',
- 'bindings/v8/ScriptController.h',
'bindings/v8/V8Binding.h',
'bindings/v8/V8DOMConfiguration.h', # FIXME: necessary?
'bindings/v8/V8DOMWrapper.h', # FIXME: necessary?
@@ -84,6 +83,7 @@ def generate_interface(interface):
'cpp_class': cpp_name(interface),
'generate_visit_dom_wrapper_function': generate_visit_dom_wrapper_function,
'has_custom_legacy_call': 'CustomLegacyCall' in extended_attributes, # [CustomLegacyCall]
+ 'has_custom_to_v8': 'CustomToV8' in extended_attributes, # [CustomToV8]
'has_custom_wrap': 'CustomWrap' in extended_attributes, # [CustomWrap]
'has_visit_dom_wrapper': has_extended_attribute(interface,
['CustomVisitDOMWrapper', 'GenerateVisitDOMWrapper']),
« no previous file with comments | « Source/bindings/scripts/code_generator_v8.pm ('k') | Source/bindings/templates/interface.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698