Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(171)

Unified Diff: third_party/WebKit/Source/bindings/scripts/compute_interfaces_info_overall.py

Issue 1686483002: Oilpan: Remove most WillBe types from the code base (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 4 years, 10 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
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',
sof 2016/02/09 15:45:45 Duplicate.
])
# 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:
sof 2016/02/09 15:45:45 will_be_garbage_* no longer needed, right?
will_be_garbage_collected_interfaces.add(interface_name)
if 'GarbageCollected' in inherited_extended_attributes:
garbage_collected_interfaces.add(interface_name)

Powered by Google App Engine
This is Rietveld 408576698