| Index: third_party/WebKit/Source/bindings/scripts/compute_interfaces_info_overall.py
|
| diff --git a/third_party/WebKit/Source/bindings/scripts/compute_interfaces_info_overall.py b/third_party/WebKit/Source/bindings/scripts/compute_interfaces_info_overall.py
|
| index 380510dda6077d4b5f6effc809e4396039bd0e02..c6697fb1fcb8f802f43ca2d910efafc234680292 100755
|
| --- a/third_party/WebKit/Source/bindings/scripts/compute_interfaces_info_overall.py
|
| +++ b/third_party/WebKit/Source/bindings/scripts/compute_interfaces_info_overall.py
|
| @@ -92,7 +92,7 @@ INHERITED_EXTENDED_ATTRIBUTES = set([
|
| 'ActiveDOMObject',
|
| 'DependentLifetime',
|
| 'GarbageCollected',
|
| - 'WillBeGarbageCollected',
|
| + 'GarbageCollected',
|
| ])
|
|
|
| # Main variable (filled in and exported)
|
| @@ -186,7 +186,7 @@ def compute_global_type_info():
|
| implemented_as_interfaces[interface_name] = interface_info['implemented_as']
|
|
|
| inherited_extended_attributes = interface_info['inherited_extended_attributes']
|
| - if 'WillBeGarbageCollected' in inherited_extended_attributes:
|
| + if 'GarbageCollected' in inherited_extended_attributes:
|
| will_be_garbage_collected_interfaces.add(interface_name)
|
| if 'GarbageCollected' in inherited_extended_attributes:
|
| garbage_collected_interfaces.add(interface_name)
|
|
|