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

Side by Side Diff: third_party/WebKit/Source/core/testing/PrivateScriptTest.idl

Issue 1873323002: Have bindings layer assume and insist that all interface types are GCed. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: rebased Created 4 years, 8 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 unified diff | Download patch
OLDNEW
1 // Copyright 2014 The Chromium Authors. All rights reserved. 1 // Copyright 2014 The Chromium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be 2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file. 3 // found in the LICENSE file.
4 4
5 [ 5 [
6 GarbageCollected,
7 ] interface PrivateScriptTest { 6 ] interface PrivateScriptTest {
8 [ImplementedInPrivateScript] void doNothing(); 7 [ImplementedInPrivateScript] void doNothing();
9 [ImplementedInPrivateScript] short return123(); 8 [ImplementedInPrivateScript] short return123();
10 [ImplementedInPrivateScript] short echoInteger(short value); 9 [ImplementedInPrivateScript] short echoInteger(short value);
11 [ImplementedInPrivateScript] DOMString echoString(DOMString value); 10 [ImplementedInPrivateScript] DOMString echoString(DOMString value);
12 [ImplementedInPrivateScript] Node echoNode(Node value); 11 [ImplementedInPrivateScript] Node echoNode(Node value);
13 [ImplementedInPrivateScript] short addInteger(short value1, short value2); 12 [ImplementedInPrivateScript] short addInteger(short value1, short value2);
14 [ImplementedInPrivateScript] DOMString addString(DOMString value1, DOMString value2); 13 [ImplementedInPrivateScript] DOMString addString(DOMString value1, DOMString value2);
15 [ImplementedInPrivateScript] void setIntegerToPrototype(short value); 14 [ImplementedInPrivateScript] void setIntegerToPrototype(short value);
16 [ImplementedInPrivateScript] short getIntegerFromPrototype(); 15 [ImplementedInPrivateScript] short getIntegerFromPrototype();
(...skipping 20 matching lines...) Expand all
37 [ImplementedInPrivateScript] void voidMethodThrowsReferenceError(); 36 [ImplementedInPrivateScript] void voidMethodThrowsReferenceError();
38 [ImplementedInPrivateScript] void voidMethodThrowsStackOverflowError(); 37 [ImplementedInPrivateScript] void voidMethodThrowsStackOverflowError();
39 [ImplementedInPrivateScript, OnlyExposedToPrivateScript] short addIntegerFor PrivateScriptOnly(short value1, short value2); 38 [ImplementedInPrivateScript, OnlyExposedToPrivateScript] short addIntegerFor PrivateScriptOnly(short value1, short value2);
40 [ImplementedInPrivateScript, OnlyExposedToPrivateScript] attribute DOMString stringAttributeForPrivateScriptOnly; 39 [ImplementedInPrivateScript, OnlyExposedToPrivateScript] attribute DOMString stringAttributeForPrivateScriptOnly;
41 [ImplementedInPrivateScript] short addIntegerImplementedInCPP(short value1, short value2); 40 [ImplementedInPrivateScript] short addIntegerImplementedInCPP(short value1, short value2);
42 [OnlyExposedToPrivateScript] short addIntegerImplementedInCPPForPrivateScrip tOnly(short value1, short value2); 41 [OnlyExposedToPrivateScript] short addIntegerImplementedInCPPForPrivateScrip tOnly(short value1, short value2);
43 [ImplementedInPrivateScript] attribute DOMString stringAttributeImplementedI nCPP; 42 [ImplementedInPrivateScript] attribute DOMString stringAttributeImplementedI nCPP;
44 [OnlyExposedToPrivateScript] attribute DOMString stringAttributeImplementedI nCPPForPrivateScriptOnly; 43 [OnlyExposedToPrivateScript] attribute DOMString stringAttributeImplementedI nCPPForPrivateScriptOnly;
45 [ImplementedInPrivateScript] void dispatchDocumentOnload(Document document); 44 [ImplementedInPrivateScript] void dispatchDocumentOnload(Document document);
46 }; 45 };
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698