| 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 297 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 308 // Callback function type | 308 // Callback function type |
| 309 VoidCallbackFunction voidCallbackFunctionMethod(); | 309 VoidCallbackFunction voidCallbackFunctionMethod(); |
| 310 AnyCallbackFunctionOptionalAnyArg anyCallbackFunctionOptionalAnyArgMethod(); | 310 AnyCallbackFunctionOptionalAnyArg anyCallbackFunctionOptionalAnyArgMethod(); |
| 311 void voidMethodVoidCallbackFunctionArg(VoidCallbackFunction voidCallbackFunc
tionArg); | 311 void voidMethodVoidCallbackFunctionArg(VoidCallbackFunction voidCallbackFunc
tionArg); |
| 312 void voidMethodAnyCallbackFunctionOptionalAnyArg(AnyCallbackFunctionOptional
AnyArg anyCallbackFunctionOptionalAnyArgArg); | 312 void voidMethodAnyCallbackFunctionOptionalAnyArg(AnyCallbackFunctionOptional
AnyArg anyCallbackFunctionOptionalAnyArgArg); |
| 313 // Custom type conversions | 313 // Custom type conversions |
| 314 CompareHow compareHowMethod(); | 314 CompareHow compareHowMethod(); |
| 315 any anyMethod(); | 315 any anyMethod(); |
| 316 void voidMethodCompareHowArg(CompareHow compareHowArg); | 316 void voidMethodCompareHowArg(CompareHow compareHowArg); |
| 317 void voidMethodEventTargetArg(EventTarget eventTargetArg); | 317 void voidMethodEventTargetArg(EventTarget eventTargetArg); |
| 318 void voidMethodMediaQueryListListenerArg(MediaQueryListListener mediaQueryLi
stListenerArg); | |
| 319 void voidMethodAnyArg(any anyArg); | 318 void voidMethodAnyArg(any anyArg); |
| 320 // DOM node types | 319 // DOM node types |
| 321 void voidMethodAttrArg(Attr attrArg); | 320 void voidMethodAttrArg(Attr attrArg); |
| 322 void voidMethodDocumentArg(Document documentArg); | 321 void voidMethodDocumentArg(Document documentArg); |
| 323 void voidMethodDocumentTypeArg(DocumentType documentTypeArg); | 322 void voidMethodDocumentTypeArg(DocumentType documentTypeArg); |
| 324 void voidMethodElementArg(Element elementArg); | 323 void voidMethodElementArg(Element elementArg); |
| 325 void voidMethodNodeArg(Node nodeArg); | 324 void voidMethodNodeArg(Node nodeArg); |
| 326 // Typed arrays | 325 // Typed arrays |
| 327 ArrayBuffer arrayBufferMethod(); | 326 ArrayBuffer arrayBufferMethod(); |
| 328 ArrayBufferView arrayBufferViewMethod(); | 327 ArrayBufferView arrayBufferViewMethod(); |
| (...skipping 214 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 543 [ImplementedInPrivateScript] Node nodeMethodWithVariousArgumentsImplementedI
nPrivateScript(Document document, Node node, short value1, double value2, DOMStr
ing string); | 542 [ImplementedInPrivateScript] Node nodeMethodWithVariousArgumentsImplementedI
nPrivateScript(Document document, Node node, short value1, double value2, DOMStr
ing string); |
| 544 [ImplementedInPrivateScript] readonly attribute short readonlyShortAttribute
; | 543 [ImplementedInPrivateScript] readonly attribute short readonlyShortAttribute
; |
| 545 [ImplementedInPrivateScript] attribute short shortAttribute; | 544 [ImplementedInPrivateScript] attribute short shortAttribute; |
| 546 [ImplementedInPrivateScript] attribute DOMString stringAttribute; | 545 [ImplementedInPrivateScript] attribute DOMString stringAttribute; |
| 547 [ImplementedInPrivateScript] attribute Node nodeAttribute; | 546 [ImplementedInPrivateScript] attribute Node nodeAttribute; |
| 548 [OnlyExposedToPrivateScript] short methodImplementedInCPPForPrivateScriptOnl
y(short value1, short value2); | 547 [OnlyExposedToPrivateScript] short methodImplementedInCPPForPrivateScriptOnl
y(short value1, short value2); |
| 549 [OnlyExposedToPrivateScript] attribute DOMString attributeImplementedInCPPFo
rPrivateScriptOnly; | 548 [OnlyExposedToPrivateScript] attribute DOMString attributeImplementedInCPPFo
rPrivateScriptOnly; |
| 550 [ImplementedInPrivateScript, OnlyExposedToPrivateScript] short methodForPriv
ateScriptOnly(short value1, short value2); | 549 [ImplementedInPrivateScript, OnlyExposedToPrivateScript] short methodForPriv
ateScriptOnly(short value1, short value2); |
| 551 [ImplementedInPrivateScript, OnlyExposedToPrivateScript] attribute DOMString
attributeForPrivateScriptOnly; | 550 [ImplementedInPrivateScript, OnlyExposedToPrivateScript] attribute DOMString
attributeForPrivateScriptOnly; |
| 552 }; | 551 }; |
| OLD | NEW |