| 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 321 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 332 void voidMethodNodeArg(Node nodeArg); | 332 void voidMethodNodeArg(Node nodeArg); |
| 333 // Typed arrays | 333 // Typed arrays |
| 334 ArrayBuffer arrayBufferMethod(); | 334 ArrayBuffer arrayBufferMethod(); |
| 335 ArrayBufferView arrayBufferViewMethod(); | 335 ArrayBufferView arrayBufferViewMethod(); |
| 336 Float32Array float32ArrayMethod(); | 336 Float32Array float32ArrayMethod(); |
| 337 Int32Array int32ArrayMethod(); | 337 Int32Array int32ArrayMethod(); |
| 338 Uint8Array uint8ArrayMethod(); | 338 Uint8Array uint8ArrayMethod(); |
| 339 void voidMethodArrayBufferArg(ArrayBuffer arrayBufferArg); | 339 void voidMethodArrayBufferArg(ArrayBuffer arrayBufferArg); |
| 340 void voidMethodArrayBufferOrNullArg(ArrayBuffer? arrayBufferArg); | 340 void voidMethodArrayBufferOrNullArg(ArrayBuffer? arrayBufferArg); |
| 341 void voidMethodArrayBufferViewArg(ArrayBufferView arrayBufferViewArg); | 341 void voidMethodArrayBufferViewArg(ArrayBufferView arrayBufferViewArg); |
| 342 void voidMethodFlexibleArrayBufferViewArg([FlexibleArrayBufferView] ArrayBuf
ferView arrayBufferViewArg); |
| 343 void voidMethodFlexibleArrayBufferViewTypedArg([FlexibleArrayBufferView] Flo
at32Array typedArrayBufferViewArg); |
| 342 void voidMethodFloat32ArrayArg(Float32Array float32ArrayArg); | 344 void voidMethodFloat32ArrayArg(Float32Array float32ArrayArg); |
| 343 void voidMethodInt32ArrayArg(Int32Array int32ArrayArg); | 345 void voidMethodInt32ArrayArg(Int32Array int32ArrayArg); |
| 344 void voidMethodUint8ArrayArg(Uint8Array uint8ArrayArg); | 346 void voidMethodUint8ArrayArg(Uint8Array uint8ArrayArg); |
| 345 // Arrays | 347 // Arrays |
| 346 long[] longArrayMethod(); | 348 long[] longArrayMethod(); |
| 347 DOMString[] stringArrayMethod(); | 349 DOMString[] stringArrayMethod(); |
| 348 TestInterfaceEmpty[] testInterfaceEmptyArrayMethod(); | 350 TestInterfaceEmpty[] testInterfaceEmptyArrayMethod(); |
| 349 void voidMethodArrayLongArg(long[] arrayLongArg); | 351 void voidMethodArrayLongArg(long[] arrayLongArg); |
| 350 void voidMethodArrayStringArg(DOMString[] arrayStringArg); | 352 void voidMethodArrayStringArg(DOMString[] arrayStringArg); |
| 351 void voidMethodArrayTestInterfaceEmptyArg(TestInterfaceEmpty[] arrayTestInte
rfaceEmptyArg); | 353 void voidMethodArrayTestInterfaceEmptyArg(TestInterfaceEmpty[] arrayTestInte
rfaceEmptyArg); |
| (...skipping 254 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 606 [ImplementedInPrivateScript] attribute DOMString stringAttribute; | 608 [ImplementedInPrivateScript] attribute DOMString stringAttribute; |
| 607 [ImplementedInPrivateScript] attribute Node nodeAttribute; | 609 [ImplementedInPrivateScript] attribute Node nodeAttribute; |
| 608 [OnlyExposedToPrivateScript] short methodImplementedInCPPForPrivateScriptOnl
y(short value1, short value2); | 610 [OnlyExposedToPrivateScript] short methodImplementedInCPPForPrivateScriptOnl
y(short value1, short value2); |
| 609 [OnlyExposedToPrivateScript] attribute DOMString attributeImplementedInCPPFo
rPrivateScriptOnly; | 611 [OnlyExposedToPrivateScript] attribute DOMString attributeImplementedInCPPFo
rPrivateScriptOnly; |
| 610 [ImplementedInPrivateScript, OnlyExposedToPrivateScript] short methodForPriv
ateScriptOnly(short value1, short value2); | 612 [ImplementedInPrivateScript, OnlyExposedToPrivateScript] short methodForPriv
ateScriptOnly(short value1, short value2); |
| 611 [ImplementedInPrivateScript, OnlyExposedToPrivateScript] attribute DOMString
attributeForPrivateScriptOnly; | 613 [ImplementedInPrivateScript, OnlyExposedToPrivateScript] attribute DOMString
attributeForPrivateScriptOnly; |
| 612 [ImplementedInPrivateScript] attribute TestEnum enumForPrivateScript; | 614 [ImplementedInPrivateScript] attribute TestEnum enumForPrivateScript; |
| 613 | 615 |
| 614 maplike<long, DOMStringOrDouble>; | 616 maplike<long, DOMStringOrDouble>; |
| 615 }; | 617 }; |
| OLD | NEW |