Index: third_party/WebKit/Source/bindings/scripts/v8_dictionary.py |
diff --git a/third_party/WebKit/Source/bindings/scripts/v8_dictionary.py b/third_party/WebKit/Source/bindings/scripts/v8_dictionary.py |
index 4163923cca55106d3eaad039c7f5b763c493ca16..135ce4e084b5b3dcb2e6764ab30e6525c28d81b2 100644 |
--- a/third_party/WebKit/Source/bindings/scripts/v8_dictionary.py |
+++ b/third_party/WebKit/Source/bindings/scripts/v8_dictionary.py |
@@ -63,7 +63,7 @@ def dictionary_context(dictionary, interfaces_info): |
key=operator.attrgetter('name'))] |
for member in members: |
- if member['runtime_enabled_function']: |
+ if member['runtime_enabled_feature_name']: |
includes.add('platform/RuntimeEnabledFeatures.h') |
break |
@@ -134,7 +134,7 @@ def member_context(dictionary, member): |
'is_object': unwrapped_idl_type.name == 'Object' or is_deprecated_dictionary, |
'is_required': member.is_required, |
'name': member.name, |
- 'runtime_enabled_function': v8_utilities.runtime_enabled_function_name(member), # [RuntimeEnabled] |
+ 'runtime_enabled_feature_name': v8_utilities.runtime_enabled_feature_name(member), # [RuntimeEnabled] |
'setter_name': setter_name_for_dictionary_member(member), |
'null_setter_name': null_setter_name_for_dictionary_member(member), |
'v8_default_value': v8_default_value, |