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

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

Issue 179423002: Use a class for CodeGeneratorV8 (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Tweaks Created 6 years, 10 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/scripts/unstable/v8_callback_interface.py ('k') | no next file » | 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 245be3479604d3e219fd0ff0f880273a2b0df966..d9a2cab7223f8cfd7c0c05f49e13365b0d425e31 100644
--- a/Source/bindings/scripts/unstable/v8_interface.py
+++ b/Source/bindings/scripts/unstable/v8_interface.py
@@ -44,13 +44,13 @@ import v8_utilities
from v8_utilities import capitalize, conditional_string, cpp_name, has_extended_attribute_value, runtime_enabled_function_name
-INTERFACE_H_INCLUDES = set([
+INTERFACE_H_INCLUDES = frozenset([
'bindings/v8/V8Binding.h',
'bindings/v8/V8DOMWrapper.h',
'bindings/v8/WrapperTypeInfo.h',
'heap/Handle.h',
])
-INTERFACE_CPP_INCLUDES = set([
+INTERFACE_CPP_INCLUDES = frozenset([
'RuntimeEnabledFeatures.h',
'bindings/v8/ExceptionState.h',
'bindings/v8/V8DOMConfiguration.h',
@@ -66,7 +66,7 @@ INTERFACE_CPP_INCLUDES = set([
def generate_interface(interface):
includes.clear()
includes.update(INTERFACE_CPP_INCLUDES)
- header_includes = INTERFACE_H_INCLUDES
+ header_includes = set(INTERFACE_H_INCLUDES)
parent_interface = interface.parent
if parent_interface:
« no previous file with comments | « Source/bindings/scripts/unstable/v8_callback_interface.py ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698