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

Side by Side Diff: Source/bindings/tests/idls/TestPrivateScriptInterface.idl

Issue 345893002: Implement an infrastructure of Blink-in-JS Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Created 6 years, 6 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
OLDNEW
(Empty)
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
3 // found in the LICENSE file.
4
5 [
6 PrivateScriptInterface,
Nils Barth (inactive) 2014/06/23 03:14:30 alpha
7 NoInterfaceObject
Nils Barth (inactive) 2014/06/23 03:14:30 Trailing comma
8 ] interface TestPrivateScriptInterface {
9 static void doNothing();
Nils Barth (inactive) 2014/06/23 03:14:30 Usually we've been naming members in test files wi
10 static short return123();
11 static short echoInteger(short value);
12 static DOMString echoString(DOMString value);
13 static Node echoNode(Node value);
14 static short addInteger(short value1, short value2);
15 static DOMString addString(DOMString value1, DOMString value2);
16 static void setIntegerToDocument(Document document, short value);
17 static short getIntegerFromDocument(Document document);
18 };
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698