OLD | NEW |
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 interface PrivateScriptTest { |
6 ] interface PrivateScriptTest { | |
7 [ImplementedInPrivateScript] void doNothing(); | 6 [ImplementedInPrivateScript] void doNothing(); |
8 [ImplementedInPrivateScript] short return123(); | 7 [ImplementedInPrivateScript] short return123(); |
9 [ImplementedInPrivateScript] short echoInteger(short value); | 8 [ImplementedInPrivateScript] short echoInteger(short value); |
10 [ImplementedInPrivateScript] DOMString echoString(DOMString value); | 9 [ImplementedInPrivateScript] DOMString echoString(DOMString value); |
11 [ImplementedInPrivateScript] Node echoNode(Node value); | 10 [ImplementedInPrivateScript] Node echoNode(Node value); |
12 [ImplementedInPrivateScript] short addInteger(short value1, short value2); | 11 [ImplementedInPrivateScript] short addInteger(short value1, short value2); |
13 [ImplementedInPrivateScript] DOMString addString(DOMString value1, DOMString
value2); | 12 [ImplementedInPrivateScript] DOMString addString(DOMString value1, DOMString
value2); |
14 [ImplementedInPrivateScript] void setIntegerToPrototype(short value); | 13 [ImplementedInPrivateScript] void setIntegerToPrototype(short value); |
15 [ImplementedInPrivateScript] short getIntegerFromPrototype(); | 14 [ImplementedInPrivateScript] short getIntegerFromPrototype(); |
16 [ImplementedInPrivateScript] void setIntegerToDocument(Document document, sh
ort value); | 15 [ImplementedInPrivateScript] void setIntegerToDocument(Document document, sh
ort value); |
(...skipping 19 matching lines...) Expand all Loading... |
36 [ImplementedInPrivateScript] void voidMethodThrowsReferenceError(); | 35 [ImplementedInPrivateScript] void voidMethodThrowsReferenceError(); |
37 [ImplementedInPrivateScript] void voidMethodThrowsStackOverflowError(); | 36 [ImplementedInPrivateScript] void voidMethodThrowsStackOverflowError(); |
38 [ImplementedInPrivateScript, OnlyExposedToPrivateScript] short addIntegerFor
PrivateScriptOnly(short value1, short value2); | 37 [ImplementedInPrivateScript, OnlyExposedToPrivateScript] short addIntegerFor
PrivateScriptOnly(short value1, short value2); |
39 [ImplementedInPrivateScript, OnlyExposedToPrivateScript] attribute DOMString
stringAttributeForPrivateScriptOnly; | 38 [ImplementedInPrivateScript, OnlyExposedToPrivateScript] attribute DOMString
stringAttributeForPrivateScriptOnly; |
40 [ImplementedInPrivateScript] short addIntegerImplementedInCPP(short value1,
short value2); | 39 [ImplementedInPrivateScript] short addIntegerImplementedInCPP(short value1,
short value2); |
41 [OnlyExposedToPrivateScript] short addIntegerImplementedInCPPForPrivateScrip
tOnly(short value1, short value2); | 40 [OnlyExposedToPrivateScript] short addIntegerImplementedInCPPForPrivateScrip
tOnly(short value1, short value2); |
42 [ImplementedInPrivateScript] attribute DOMString stringAttributeImplementedI
nCPP; | 41 [ImplementedInPrivateScript] attribute DOMString stringAttributeImplementedI
nCPP; |
43 [OnlyExposedToPrivateScript] attribute DOMString stringAttributeImplementedI
nCPPForPrivateScriptOnly; | 42 [OnlyExposedToPrivateScript] attribute DOMString stringAttributeImplementedI
nCPPForPrivateScriptOnly; |
44 [ImplementedInPrivateScript] void dispatchDocumentOnload(Document document); | 43 [ImplementedInPrivateScript] void dispatchDocumentOnload(Document document); |
45 }; | 44 }; |
OLD | NEW |