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

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

Issue 413393003: Blink-in-JS: Implement internal APIs exposed only to private scripts (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Created 6 years, 5 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 | Annotate | Revision Log
« no previous file with comments | « Source/core/testing/PrivateScriptTest.cpp ('k') | Source/core/testing/PrivateScriptTest.js » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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 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
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 };
OLDNEW
« no previous file with comments | « Source/core/testing/PrivateScriptTest.cpp ('k') | Source/core/testing/PrivateScriptTest.js » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698