| Index: Source/bindings/scripts/v8_utilities.py
|
| diff --git a/Source/bindings/scripts/v8_utilities.py b/Source/bindings/scripts/v8_utilities.py
|
| index da957af733336e1d3764303965c72c5500baaa7b..9099db15b188aa68e2735e2eb868b0bda9ee5705 100644
|
| --- a/Source/bindings/scripts/v8_utilities.py
|
| +++ b/Source/bindings/scripts/v8_utilities.py
|
| @@ -374,15 +374,6 @@ def measure_as(definition_or_member, interface):
|
| return None
|
|
|
|
|
| -# [PerContextEnabled]
|
| -def per_context_enabled_function_name(definition_or_member):
|
| - extended_attributes = definition_or_member.extended_attributes
|
| - if 'PerContextEnabled' not in extended_attributes:
|
| - return None
|
| - feature_name = extended_attributes['PerContextEnabled']
|
| - return 'ContextFeatures::%sEnabled' % uncapitalize(feature_name)
|
| -
|
| -
|
| # [RuntimeEnabled]
|
| def runtime_enabled_function_name(definition_or_member):
|
| """Returns the name of the RuntimeEnabledFeatures function.
|
|
|