Chromium Code Reviews| Index: Source/bindings/scripts/v8_interface.py |
| diff --git a/Source/bindings/scripts/v8_interface.py b/Source/bindings/scripts/v8_interface.py |
| index 1d28ad14eb8d1ece2bb648348e6ab99c43e00b12..0a2ae57605eb27bec6760306fcf570d1319baaf2 100644 |
| --- a/Source/bindings/scripts/v8_interface.py |
| +++ b/Source/bindings/scripts/v8_interface.py |
| @@ -380,10 +380,13 @@ def interface_context(interface): |
| runtime_enabled_function = method['runtime_enabled_function'] |
| has_custom_registration = method['has_custom_registration'] |
| + if has_custom_registration: |
| + custom_registration_methods.append(method) |
| + continue |
| if per_context_enabled_function or conditionally_exposed_function: |
| conditionally_enabled_methods.append(method) |
| continue |
| - if runtime_enabled_function or has_custom_registration: |
| + if runtime_enabled_function: |
| custom_registration_methods.append(method) |
|
Jens Widell
2014/12/15 12:22:34
So, I split 'has_custom_registration' away from 'r
|
| continue |
| if method['should_be_exposed_to_script']: |