| 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..dab2625c3f917b67ac2c1ddb2b72a3fc2e7f695e 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']:
|
| 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': v8_utilities.runtime_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,
|
|
|