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

Unified Diff: third_party/WebKit/Source/bindings/scripts/v8_utilities.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/v8_utilities.py
diff --git a/third_party/WebKit/Source/bindings/scripts/v8_utilities.py b/third_party/WebKit/Source/bindings/scripts/v8_utilities.py
index e6fcb1d8b7ddcbe028ce515c66a6389c16a5272f..25cd70e8b3b4b5fd72bc2483ad4fe5036b1c2b4a 100644
--- a/third_party/WebKit/Source/bindings/scripts/v8_utilities.py
+++ b/third_party/WebKit/Source/bindings/scripts/v8_utilities.py
@@ -323,12 +323,12 @@ def exposed(member, interface):
return exposure_set.code()
-# [GarbageCollected], [WillBeGarbageCollected]
+# [GarbageCollected], [GarbageCollected]
sof 2016/02/09 15:45:45 More duplication.
def gc_type(definition):
extended_attributes = definition.extended_attributes
if 'GarbageCollected' in extended_attributes:
return 'GarbageCollectedObject'
- elif 'WillBeGarbageCollected' in extended_attributes:
+ elif 'GarbageCollected' in extended_attributes:
return 'WillBeGarbageCollectedObject'
return 'RefCountedObject'

Powered by Google App Engine
This is Rietveld 408576698