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

Side by Side Diff: Source/bindings/scripts/v8_interface.py

Issue 483163003: Introduce ES6 iterator for DOM objects. (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: Created 6 years, 4 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 unified diff | Download patch
OLDNEW
1 # Copyright (C) 2013 Google Inc. All rights reserved. 1 # Copyright (C) 2013 Google Inc. All rights reserved.
2 # coding=utf-8 2 # coding=utf-8
3 # 3 #
4 # Redistribution and use in source and binary forms, with or without 4 # Redistribution and use in source and binary forms, with or without
5 # modification, are permitted provided that the following conditions are 5 # modification, are permitted provided that the following conditions are
6 # met: 6 # met:
7 # 7 #
8 # * Redistributions of source code must retain the above copyright 8 # * Redistributions of source code must retain the above copyright
9 # notice, this list of conditions and the following disclaimer. 9 # notice, this list of conditions and the following disclaimer.
10 # * Redistributions in binary form must reproduce the above 10 # * Redistributions in binary form must reproduce the above
(...skipping 83 matching lines...) Expand 10 before | Expand all | Expand 10 after
94 is_active_dom_object = 'ActiveDOMObject' in extended_attributes 94 is_active_dom_object = 'ActiveDOMObject' in extended_attributes
95 95
96 # [CheckSecurity] 96 # [CheckSecurity]
97 is_check_security = 'CheckSecurity' in extended_attributes 97 is_check_security = 'CheckSecurity' in extended_attributes
98 if is_check_security: 98 if is_check_security:
99 includes.add('bindings/core/v8/BindingSecurity.h') 99 includes.add('bindings/core/v8/BindingSecurity.h')
100 100
101 # [DependentLifetime] 101 # [DependentLifetime]
102 is_dependent_lifetime = 'DependentLifetime' in extended_attributes 102 is_dependent_lifetime = 'DependentLifetime' in extended_attributes
103 103
104 # [Iterable]
105 iterator_method = None
106 if 'Iterable' in extended_attributes:
107 iterator_operation = IdlOperation(interface.idl_name)
108 iterator_operation.name = 'iterator'
109 iterator_operation.idl_type = IdlType('Iterator')
110 iterator_operation.extended_attributes['RaisesException'] = None
111 iterator_operation.extended_attributes['CallWith'] = 'ScriptState'
112 iterator_method = v8_methods.method_context(interface,
113 iterator_operation)
114
104 # [MeasureAs] 115 # [MeasureAs]
105 is_measure_as = 'MeasureAs' in extended_attributes 116 is_measure_as = 'MeasureAs' in extended_attributes
106 if is_measure_as: 117 if is_measure_as:
107 includes.add('core/frame/UseCounter.h') 118 includes.add('core/frame/UseCounter.h')
108 119
109 # [SetWrapperReferenceFrom] 120 # [SetWrapperReferenceFrom]
110 reachable_node_function = extended_attributes.get('SetWrapperReferenceFrom') 121 reachable_node_function = extended_attributes.get('SetWrapperReferenceFrom')
111 if reachable_node_function: 122 if reachable_node_function:
112 includes.update(['bindings/core/v8/V8GCController.h', 123 includes.update(['bindings/core/v8/V8GCController.h',
113 'core/dom/Element.h']) 124 'core/dom/Element.h'])
(...skipping 43 matching lines...) Expand 10 before | Expand all | Expand 10 after
157 'header_includes': header_includes, 168 'header_includes': header_includes,
158 'interface_name': interface.name, 169 'interface_name': interface.name,
159 'is_active_dom_object': is_active_dom_object, 170 'is_active_dom_object': is_active_dom_object,
160 'is_audio_buffer': is_audio_buffer, 171 'is_audio_buffer': is_audio_buffer,
161 'is_check_security': is_check_security, 172 'is_check_security': is_check_security,
162 'is_dependent_lifetime': is_dependent_lifetime, 173 'is_dependent_lifetime': is_dependent_lifetime,
163 'is_document': is_document, 174 'is_document': is_document,
164 'is_event_target': inherits_interface(interface.name, 'EventTarget'), 175 'is_event_target': inherits_interface(interface.name, 'EventTarget'),
165 'is_exception': interface.is_exception, 176 'is_exception': interface.is_exception,
166 'is_node': inherits_interface(interface.name, 'Node'), 177 'is_node': inherits_interface(interface.name, 'Node'),
178 'iterator_method': iterator_method,
167 'measure_as': v8_utilities.measure_as(interface), # [MeasureAs] 179 'measure_as': v8_utilities.measure_as(interface), # [MeasureAs]
168 'parent_interface': parent_interface, 180 'parent_interface': parent_interface,
169 'pass_cpp_type': cpp_template_type( 181 'pass_cpp_type': cpp_template_type(
170 cpp_ptr_type('PassRefPtr', 'RawPtr', this_gc_type), 182 cpp_ptr_type('PassRefPtr', 'RawPtr', this_gc_type),
171 cpp_name(interface)), 183 cpp_name(interface)),
172 'reachable_node_function': reachable_node_function, 184 'reachable_node_function': reachable_node_function,
173 'runtime_enabled_function': runtime_enabled_function_name(interface), # [RuntimeEnabled] 185 'runtime_enabled_function': runtime_enabled_function_name(interface), # [RuntimeEnabled]
174 'set_wrapper_reference_to_list': set_wrapper_reference_to_list, 186 'set_wrapper_reference_to_list': set_wrapper_reference_to_list,
175 'special_wrap_for': special_wrap_for, 187 'special_wrap_for': special_wrap_for,
176 'v8_class': v8_utilities.v8_class_name(interface), 188 'v8_class': v8_utilities.v8_class_name(interface),
(...skipping 937 matching lines...) Expand 10 before | Expand all | Expand 10 after
1114 deleter = next( 1126 deleter = next(
1115 method 1127 method
1116 for method in interface.operations 1128 for method in interface.operations
1117 if ('deleter' in method.specials and 1129 if ('deleter' in method.specials and
1118 len(method.arguments) == 1 and 1130 len(method.arguments) == 1 and
1119 str(method.arguments[0].idl_type) == 'DOMString')) 1131 str(method.arguments[0].idl_type) == 'DOMString'))
1120 except StopIteration: 1132 except StopIteration:
1121 return None 1133 return None
1122 1134
1123 return property_deleter(deleter) 1135 return property_deleter(deleter)
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698