| OLD | NEW |
| 1 /* | 1 /* |
| 2 * Copyright (C) 2013 Google Inc. All rights reserved. | 2 * Copyright (C) 2013 Google Inc. All rights reserved. |
| 3 * | 3 * |
| 4 * Redistribution and use in source and binary forms, with or without | 4 * Redistribution and use in source and binary forms, with or without |
| 5 * modification, are permitted provided that the following conditions are | 5 * modification, are permitted provided that the following conditions are |
| 6 * met: | 6 * met: |
| 7 * | 7 * |
| 8 * * Redistributions of source code must retain the above copyright | 8 * * Redistributions of source code must retain the above copyright |
| 9 * notice, this list of conditions and the following disclaimer. | 9 * notice, this list of conditions and the following disclaimer. |
| 10 * * Redistributions in binary form must reproduce the above | 10 * * Redistributions in binary form must reproduce the above |
| (...skipping 432 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 443 void overloadedMethodG(long longArg); | 443 void overloadedMethodG(long longArg); |
| 444 void overloadedMethodG(optional TestInterfaceEmpty? testInterfaceEmptyOrNull
Arg = null); | 444 void overloadedMethodG(optional TestInterfaceEmpty? testInterfaceEmptyOrNull
Arg = null); |
| 445 void overloadedMethodH(TestInterface testInterfaceArg); | 445 void overloadedMethodH(TestInterface testInterfaceArg); |
| 446 void overloadedMethodH(TestInterfaceEmpty testInterfaceEmptyArg); | 446 void overloadedMethodH(TestInterfaceEmpty testInterfaceEmptyArg); |
| 447 void overloadedMethodI(DOMString stringArg); | 447 void overloadedMethodI(DOMString stringArg); |
| 448 void overloadedMethodI(double doubleArg); | 448 void overloadedMethodI(double doubleArg); |
| 449 void overloadedMethodJ(DOMString stringArg); | 449 void overloadedMethodJ(DOMString stringArg); |
| 450 void overloadedMethodJ(TestDictionary testDictionaryArg); | 450 void overloadedMethodJ(TestDictionary testDictionaryArg); |
| 451 void overloadedMethodK(Function functionArg); | 451 void overloadedMethodK(Function functionArg); |
| 452 void overloadedMethodK(DOMString stringArg); | 452 void overloadedMethodK(DOMString stringArg); |
| 453 void overloadedMethodL(long longArg, any... restArgs); |
| 454 void overloadedMethodL(DOMString stringArg, any... restArgs); |
| 453 | 455 |
| 454 Promise promiseOverloadMethod(); | 456 Promise promiseOverloadMethod(); |
| 455 Promise promiseOverloadMethod(Window arg1, double arg2); | 457 Promise promiseOverloadMethod(Window arg1, double arg2); |
| 456 Promise promiseOverloadMethod(Document arg1, double arg2); | 458 Promise promiseOverloadMethod(Document arg1, double arg2); |
| 457 | 459 |
| 458 [PerWorldBindings] void overloadedPerWorldBindingsMethod(); | 460 [PerWorldBindings] void overloadedPerWorldBindingsMethod(); |
| 459 [PerWorldBindings] void overloadedPerWorldBindingsMethod(long longArg); | 461 [PerWorldBindings] void overloadedPerWorldBindingsMethod(long longArg); |
| 460 | 462 |
| 461 static void overloadedStaticMethod(long longArg); | 463 static void overloadedStaticMethod(long longArg); |
| 462 static void overloadedStaticMethod(long longArg1, long longArg2); | 464 static void overloadedStaticMethod(long longArg1, long longArg2); |
| (...skipping 104 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 567 [ImplementedInPrivateScript] readonly attribute short readonlyShortAttribute
; | 569 [ImplementedInPrivateScript] readonly attribute short readonlyShortAttribute
; |
| 568 [ImplementedInPrivateScript] attribute short shortAttribute; | 570 [ImplementedInPrivateScript] attribute short shortAttribute; |
| 569 [ImplementedInPrivateScript] attribute DOMString stringAttribute; | 571 [ImplementedInPrivateScript] attribute DOMString stringAttribute; |
| 570 [ImplementedInPrivateScript] attribute Node nodeAttribute; | 572 [ImplementedInPrivateScript] attribute Node nodeAttribute; |
| 571 [OnlyExposedToPrivateScript] short methodImplementedInCPPForPrivateScriptOnl
y(short value1, short value2); | 573 [OnlyExposedToPrivateScript] short methodImplementedInCPPForPrivateScriptOnl
y(short value1, short value2); |
| 572 [OnlyExposedToPrivateScript] attribute DOMString attributeImplementedInCPPFo
rPrivateScriptOnly; | 574 [OnlyExposedToPrivateScript] attribute DOMString attributeImplementedInCPPFo
rPrivateScriptOnly; |
| 573 [ImplementedInPrivateScript, OnlyExposedToPrivateScript] short methodForPriv
ateScriptOnly(short value1, short value2); | 575 [ImplementedInPrivateScript, OnlyExposedToPrivateScript] short methodForPriv
ateScriptOnly(short value1, short value2); |
| 574 [ImplementedInPrivateScript, OnlyExposedToPrivateScript] attribute DOMString
attributeForPrivateScriptOnly; | 576 [ImplementedInPrivateScript, OnlyExposedToPrivateScript] attribute DOMString
attributeForPrivateScriptOnly; |
| 575 [ImplementedInPrivateScript] attribute TestEnum enumForPrivateScript; | 577 [ImplementedInPrivateScript] attribute TestEnum enumForPrivateScript; |
| 576 }; | 578 }; |
| OLD | NEW |