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

Unified Diff: Source/bindings/tests/idls/TestCallbackInterface.idl

Issue 185413023: Oilpan: move Touch related objects to the oilpan heap. (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: Added 2 binding tests + style Created 6 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: Source/bindings/tests/idls/TestCallbackInterface.idl
diff --git a/Source/bindings/tests/idls/TestCallbackInterface.idl b/Source/bindings/tests/idls/TestCallbackInterface.idl
index 283ffb24789d6d10e35f734a59e53349611394b7..cebfa19dfdade4ee48f26953353093d7d34517d3 100644
--- a/Source/bindings/tests/idls/TestCallbackInterface.idl
+++ b/Source/bindings/tests/idls/TestCallbackInterface.idl
@@ -36,4 +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);
};

Powered by Google App Engine
This is Rietveld 408576698