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

Unified Diff: third_party/WebKit/Source/bindings/tests/idls/core/TestCallbackInterface.idl

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/tests/idls/core/TestCallbackInterface.idl
diff --git a/third_party/WebKit/Source/bindings/tests/idls/core/TestCallbackInterface.idl b/third_party/WebKit/Source/bindings/tests/idls/core/TestCallbackInterface.idl
index cebfa19dfdade4ee48f26953353093d7d34517d3..a21a04fe3b90f6f3654be73ceaaffa32c2cd88fb 100644
--- a/third_party/WebKit/Source/bindings/tests/idls/core/TestCallbackInterface.idl
+++ b/third_party/WebKit/Source/bindings/tests/idls/core/TestCallbackInterface.idl
@@ -36,7 +36,7 @@ callback interface TestCallbackInterface {
void voidMethodTestInterfaceEmptyStringArg(TestInterfaceEmpty testInterfaceEmptyArg, DOMString stringArg);
[CallWith=ThisValue] void callbackWithThisValueVoidMethodStringArg(DOMString stringArg);
[Custom] void customVoidMethodTestInterfaceEmptyArg(TestInterfaceEmpty testInterfaceEmptyArg);
- // [WillBeGarbageCollected]
- void voidMethodWillBeGarbageCollectedSequenceArg(sequence<TestInterfaceWillBeGarbageCollected> sequenceArg);
- void voidMethodWillBeGarbageCollectedArrayArg(TestInterfaceWillBeGarbageCollected[] arrayArg);
+ // [GarbageCollected]
sof 2016/02/09 15:45:45 Just remove this right away?
+ void voidMethodGarbageCollectedSequenceArg(sequence<TestInterfaceGarbageCollected> sequenceArg);
+ void voidMethodGarbageCollectedArrayArg(TestInterfaceGarbageCollected[] arrayArg);
};

Powered by Google App Engine
This is Rietveld 408576698