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

Unified Diff: third_party/WebKit/Source/bindings/scripts/v8_types.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_types.py
diff --git a/third_party/WebKit/Source/bindings/scripts/v8_types.py b/third_party/WebKit/Source/bindings/scripts/v8_types.py
index 939dda0dda62e1db8eefdff1b4f1db041fc12d17..109a8d3e5758821f1d63457bc0d16c7f7c26a71b 100644
--- a/third_party/WebKit/Source/bindings/scripts/v8_types.py
+++ b/third_party/WebKit/Source/bindings/scripts/v8_types.py
@@ -111,7 +111,7 @@ CPP_SPECIAL_CONVERSION_RULES = {
'Date': 'double',
'Dictionary': 'Dictionary',
'EventHandler': 'EventListener*',
- 'NodeFilter': 'RefPtrWillBeRawPtr<NodeFilter>',
+ 'NodeFilter': 'RawPtr<NodeFilter>',
'Promise': 'ScriptPromise',
'ScriptValue': 'ScriptValue',
# FIXME: Eliminate custom bindings for XPathNSResolver http://crbug.com/345529
@@ -303,7 +303,7 @@ IdlType.set_garbage_collected_types = classmethod(
cls.garbage_collected_types.update(new_garbage_collected_types))
-# [WillBeGarbageCollected]
+# [GarbageCollected]
IdlType.will_be_garbage_collected_types = set()
sof 2016/02/09 15:45:45 Remove?
IdlType.is_will_be_garbage_collected = property(

Powered by Google App Engine
This is Rietveld 408576698