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

Unified Diff: third_party/WebKit/Source/bindings/scripts/compute_interfaces_info_individual.py

Issue 2408083003: Drop [ExperimentalCallbackFunction] (Closed)
Patch Set: Update tests and expectations Created 4 years, 2 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: third_party/WebKit/Source/bindings/scripts/compute_interfaces_info_individual.py
diff --git a/third_party/WebKit/Source/bindings/scripts/compute_interfaces_info_individual.py b/third_party/WebKit/Source/bindings/scripts/compute_interfaces_info_individual.py
index 4fd741a8c533d460a90aeef3ba6248e6c23314b2..950742087ea154612c31e4dc7b04932a0099358f 100755
--- a/third_party/WebKit/Source/bindings/scripts/compute_interfaces_info_individual.py
+++ b/third_party/WebKit/Source/bindings/scripts/compute_interfaces_info_individual.py
@@ -220,13 +220,12 @@ class InterfaceInfoCollector(object):
self.union_types.update(this_union_types)
self.typedefs.update(definitions.typedefs)
for callback_function_name, callback_function in definitions.callback_functions.iteritems():
- if 'ExperimentalCallbackFunction' in callback_function.extended_attributes:
- # Set 'component_dir' to specify a directory that callback function files belong to
- self.callback_functions[callback_function_name] = {
- 'callback_function': callback_function,
- 'component_dir': idl_filename_to_component(idl_filename),
- 'full_path': os.path.realpath(idl_filename),
- }
+ # Set 'component_dir' to specify a directory that callback function files belong to
+ self.callback_functions[callback_function_name] = {
+ 'callback_function': callback_function,
+ 'component_dir': idl_filename_to_component(idl_filename),
+ 'full_path': os.path.realpath(idl_filename),
+ }
# Check enum duplication.
for enum_name in definitions.enumerations.keys():
for defined_enum in self.enumerations:

Powered by Google App Engine
This is Rietveld 408576698