Chromium Code Reviews| OLD | NEW |
|---|---|
| (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 }; | |
| OLD | NEW |