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

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

Issue 373423002: Split Dictionary's get and convert into DictionaryHelper. (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Created 6 years, 5 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
Index: Source/bindings/scripts/v8_interface.py
diff --git a/Source/bindings/scripts/v8_interface.py b/Source/bindings/scripts/v8_interface.py
index 887f05815df0f570fc2213dedbff1d8576b6a176..35056edc33d0ee1fa6dff59f7819398f209b786f 100644
--- a/Source/bindings/scripts/v8_interface.py
+++ b/Source/bindings/scripts/v8_interface.py
@@ -197,7 +197,8 @@ def interface_context(interface):
any_type_attributes = [attribute for attribute in interface.attributes
if attribute.idl_type.name == 'Any']
if has_event_constructor:
- includes.add('bindings/core/v8/Dictionary.h')
+ includes.update(['bindings/core/v8/Dictionary.h',
+ 'bindings/core/v8/DictionaryHelper.h'])
if any_type_attributes:
includes.add('bindings/core/v8/SerializedScriptValue.h')

Powered by Google App Engine
This is Rietveld 408576698