| 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 289 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 300 // Interface types | 300 // Interface types |
| 301 TestInterfaceEmpty testInterfaceEmptyMethod(); | 301 TestInterfaceEmpty testInterfaceEmptyMethod(); |
| 302 void voidMethodTestInterfaceEmptyArg(TestInterfaceEmpty testInterfaceEmptyAr
g); | 302 void voidMethodTestInterfaceEmptyArg(TestInterfaceEmpty testInterfaceEmptyAr
g); |
| 303 void voidMethodLongArgTestInterfaceEmptyArg(long longArg, TestInterfaceEmpty
testInterfaceEmptyArg); | 303 void voidMethodLongArgTestInterfaceEmptyArg(long longArg, TestInterfaceEmpty
testInterfaceEmptyArg); |
| 304 // Callback function type | 304 // Callback function type |
| 305 VoidCallbackFunction voidCallbackFunctionMethod(); | 305 VoidCallbackFunction voidCallbackFunctionMethod(); |
| 306 AnyCallbackFunctionOptionalAnyArg anyCallbackFunctionOptionalAnyArgMethod(); | 306 AnyCallbackFunctionOptionalAnyArg anyCallbackFunctionOptionalAnyArgMethod(); |
| 307 void voidMethodVoidCallbackFunctionArg(VoidCallbackFunction voidCallbackFunc
tionArg); | 307 void voidMethodVoidCallbackFunctionArg(VoidCallbackFunction voidCallbackFunc
tionArg); |
| 308 void voidMethodAnyCallbackFunctionOptionalAnyArg(AnyCallbackFunctionOptional
AnyArg anyCallbackFunctionOptionalAnyArgArg); | 308 void voidMethodAnyCallbackFunctionOptionalAnyArg(AnyCallbackFunctionOptional
AnyArg anyCallbackFunctionOptionalAnyArgArg); |
| 309 // Custom type conversions | 309 // Custom type conversions |
| 310 CompareHow compareHowMethod(); | |
| 311 any anyMethod(); | 310 any anyMethod(); |
| 312 void voidMethodCompareHowArg(CompareHow compareHowArg); | |
| 313 void voidMethodEventTargetArg(EventTarget eventTargetArg); | 311 void voidMethodEventTargetArg(EventTarget eventTargetArg); |
| 314 void voidMethodAnyArg(any anyArg); | 312 void voidMethodAnyArg(any anyArg); |
| 315 // DOM node types | 313 // DOM node types |
| 316 void voidMethodAttrArg(Attr attrArg); | 314 void voidMethodAttrArg(Attr attrArg); |
| 317 void voidMethodDocumentArg(Document documentArg); | 315 void voidMethodDocumentArg(Document documentArg); |
| 318 void voidMethodDocumentTypeArg(DocumentType documentTypeArg); | 316 void voidMethodDocumentTypeArg(DocumentType documentTypeArg); |
| 319 void voidMethodElementArg(Element elementArg); | 317 void voidMethodElementArg(Element elementArg); |
| 320 void voidMethodNodeArg(Node nodeArg); | 318 void voidMethodNodeArg(Node nodeArg); |
| 321 // Typed arrays | 319 // Typed arrays |
| 322 ArrayBuffer arrayBufferMethod(); | 320 ArrayBuffer arrayBufferMethod(); |
| (...skipping 223 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 546 [ImplementedInPrivateScript] readonly attribute short readonlyShortAttribute
; | 544 [ImplementedInPrivateScript] readonly attribute short readonlyShortAttribute
; |
| 547 [ImplementedInPrivateScript] attribute short shortAttribute; | 545 [ImplementedInPrivateScript] attribute short shortAttribute; |
| 548 [ImplementedInPrivateScript] attribute DOMString stringAttribute; | 546 [ImplementedInPrivateScript] attribute DOMString stringAttribute; |
| 549 [ImplementedInPrivateScript] attribute Node nodeAttribute; | 547 [ImplementedInPrivateScript] attribute Node nodeAttribute; |
| 550 [OnlyExposedToPrivateScript] short methodImplementedInCPPForPrivateScriptOnl
y(short value1, short value2); | 548 [OnlyExposedToPrivateScript] short methodImplementedInCPPForPrivateScriptOnl
y(short value1, short value2); |
| 551 [OnlyExposedToPrivateScript] attribute DOMString attributeImplementedInCPPFo
rPrivateScriptOnly; | 549 [OnlyExposedToPrivateScript] attribute DOMString attributeImplementedInCPPFo
rPrivateScriptOnly; |
| 552 [ImplementedInPrivateScript, OnlyExposedToPrivateScript] short methodForPriv
ateScriptOnly(short value1, short value2); | 550 [ImplementedInPrivateScript, OnlyExposedToPrivateScript] short methodForPriv
ateScriptOnly(short value1, short value2); |
| 553 [ImplementedInPrivateScript, OnlyExposedToPrivateScript] attribute DOMString
attributeForPrivateScriptOnly; | 551 [ImplementedInPrivateScript, OnlyExposedToPrivateScript] attribute DOMString
attributeForPrivateScriptOnly; |
| 554 [ImplementedInPrivateScript] attribute TestEnum enumForPrivateScript; | 552 [ImplementedInPrivateScript] attribute TestEnum enumForPrivateScript; |
| 555 }; | 553 }; |
| OLD | NEW |