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

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

Issue 2347803002: Drop empty [] for dictionaries and interfaces in IDL files (Closed)
Patch Set: fix p_ExtendedAttributeList Created 4 years, 3 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 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
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 };
OLDNEW
« no previous file with comments | « third_party/WebKit/Source/core/testing/LayerRectList.idl ('k') | third_party/WebKit/Source/core/testing/TypeConversions.idl » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698