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 [ |
6 GarbageCollected | 6 GarbageCollected |
7 ] interface PrivateScriptTest { | 7 ] interface PrivateScriptTest { |
8 [ImplementedInPrivateScript] void doNothing(); | 8 [ImplementedInPrivateScript] void doNothing(); |
9 [ImplementedInPrivateScript] short return123(); | 9 [ImplementedInPrivateScript] short return123(); |
10 [ImplementedInPrivateScript] short echoInteger(short value); | 10 [ImplementedInPrivateScript] short echoInteger(short value); |
(...skipping 14 matching lines...) Expand all Loading... |
25 [ImplementedInPrivateScript] void addClickListener(Node node); | 25 [ImplementedInPrivateScript] void addClickListener(Node node); |
26 [ImplementedInPrivateScript] void clickNode(Document document, Node node); | 26 [ImplementedInPrivateScript] void clickNode(Document document, Node node); |
27 [ImplementedInPrivateScript] readonly attribute short readonlyShortAttribute
; | 27 [ImplementedInPrivateScript] readonly attribute short readonlyShortAttribute
; |
28 [ImplementedInPrivateScript] attribute short shortAttribute; | 28 [ImplementedInPrivateScript] attribute short shortAttribute; |
29 [ImplementedInPrivateScript] attribute DOMString stringAttribute; | 29 [ImplementedInPrivateScript] attribute DOMString stringAttribute; |
30 [ImplementedInPrivateScript] attribute Node nodeAttribute; | 30 [ImplementedInPrivateScript] attribute Node nodeAttribute; |
31 [ImplementedInPrivateScript] attribute Node nodeAttributeThrowsIndexSizeErro
r; | 31 [ImplementedInPrivateScript] attribute Node nodeAttributeThrowsIndexSizeErro
r; |
32 [ImplementedInPrivateScript] void voidMethodThrowsSyntaxError(); | 32 [ImplementedInPrivateScript] void voidMethodThrowsSyntaxError(); |
33 [ImplementedInPrivateScript, OnlyExposedToPrivateScript] short addIntegerFor
PrivateScriptOnly(short value1, short value2); | 33 [ImplementedInPrivateScript, OnlyExposedToPrivateScript] short addIntegerFor
PrivateScriptOnly(short value1, short value2); |
34 [ImplementedInPrivateScript, OnlyExposedToPrivateScript] attribute DOMString
stringAttributeForPrivateScriptOnly; | 34 [ImplementedInPrivateScript, OnlyExposedToPrivateScript] attribute DOMString
stringAttributeForPrivateScriptOnly; |
| 35 [ImplementedInPrivateScript] short addIntegerImplementedInCPP(short value1,
short value2); |
| 36 [OnlyExposedToPrivateScript] short addIntegerImplementedInCPPForPrivateScrip
tOnly(short value1, short value2); |
| 37 [ImplementedInPrivateScript] attribute DOMString stringAttributeImplementedI
nCPP; |
| 38 [OnlyExposedToPrivateScript] attribute DOMString stringAttributeImplementedI
nCPPForPrivateScriptOnly; |
35 }; | 39 }; |
OLD | NEW |