Index: third_party/WebKit/Source/bindings/scripts/v8_interface.py |
diff --git a/third_party/WebKit/Source/bindings/scripts/v8_interface.py b/third_party/WebKit/Source/bindings/scripts/v8_interface.py |
index c448a0ab2ab7a8758200c85982a0b08e17120eb5..e73440cc6763370718a374b1128ecca96e7958e3 100644 |
--- a/third_party/WebKit/Source/bindings/scripts/v8_interface.py |
+++ b/third_party/WebKit/Source/bindings/scripts/v8_interface.py |
@@ -282,25 +282,6 @@ def interface_context(interface): |
context.update({ |
'attributes': attributes, |
- 'has_accessor_configuration': any( |
- not (attribute['exposed_test'] or |
- attribute['runtime_enabled_function']) and |
- not attribute['is_data_type_property'] and |
- attribute['should_be_exposed_to_script'] |
- for attribute in attributes), |
- 'has_attribute_configuration': any( |
- not (attribute['exposed_test'] or |
- attribute['runtime_enabled_function']) and |
- attribute['is_data_type_property'] and |
- attribute['should_be_exposed_to_script'] |
- for attribute in attributes), |
- 'has_constructor_attributes': any( |
- attribute['constructor_type'] |
- for attribute in attributes), |
- 'has_replaceable_attributes': any( |
- attribute['is_replaceable'] and |
- not attribute['is_data_type_property'] |
- for attribute in attributes), |
}) |
# Methods |