| 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 NoInterfaceObject, | |
| 7 PrivateScriptInterface, | |
| 8 ] interface TestPrivateScriptInterface { | |
| 9 static void voidMethod(); | |
| 10 static short shortMethod(); | |
| 11 static short shortMethodWithShortArgument(short value); | |
| 12 static DOMString stringMethodWithStringArgument(DOMString value); | |
| 13 static Node nodeMethodWithNodeArgument(Node value); | |
| 14 static Node nodeMethodWithVariousArguments(Document document, Node node, sho
rt value1, double value2, DOMString string); | |
| 15 }; | |
| OLD | NEW |