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 346 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
357 void voidMethodTestInterfaceEmptyOrNullArg(TestInterfaceEmpty? nullableTestI
nterfaceEmptyArg); | 357 void voidMethodTestInterfaceEmptyOrNullArg(TestInterfaceEmpty? nullableTestI
nterfaceEmptyArg); |
358 // Callback interface types | 358 // Callback interface types |
359 void voidMethodTestCallbackInterfaceArg(TestCallbackInterface testCallbackIn
terfaceArg); | 359 void voidMethodTestCallbackInterfaceArg(TestCallbackInterface testCallbackIn
terfaceArg); |
360 void voidMethodOptionalTestCallbackInterfaceArg(optional TestCallbackInterfa
ce optionalTestCallbackInterfaceArg); | 360 void voidMethodOptionalTestCallbackInterfaceArg(optional TestCallbackInterfa
ce optionalTestCallbackInterfaceArg); |
361 void voidMethodTestCallbackInterfaceOrNullArg(TestCallbackInterface? testCal
lbackInterfaceArg); | 361 void voidMethodTestCallbackInterfaceOrNullArg(TestCallbackInterface? testCal
lbackInterfaceArg); |
362 // Enumerations | 362 // Enumerations |
363 TestEnum testEnumMethod(); | 363 TestEnum testEnumMethod(); |
364 void voidMethodTestEnumArg(TestEnum testEnumTypeArg); | 364 void voidMethodTestEnumArg(TestEnum testEnumTypeArg); |
365 // Exceptional types | 365 // Exceptional types |
366 Dictionary dictionaryMethod(); | 366 Dictionary dictionaryMethod(); |
| 367 TestDictionary testDictionaryMethod(); |
367 NodeFilter nodeFilterMethod(); | 368 NodeFilter nodeFilterMethod(); |
368 Promise promiseMethod(long arg1, Dictionary arg2, DOMString arg3, DOMString.
.. variadic); | 369 Promise promiseMethod(long arg1, Dictionary arg2, DOMString arg3, DOMString.
.. variadic); |
369 Promise promiseMethodWithoutExceptionState(Dictionary arg1); | 370 Promise promiseMethodWithoutExceptionState(Dictionary arg1); |
370 SerializedScriptValue serializedScriptValueMethod(); | 371 SerializedScriptValue serializedScriptValueMethod(); |
371 XPathNSResolver xPathNSResolverMethod(); | 372 XPathNSResolver xPathNSResolverMethod(); |
372 void voidMethodDictionaryArg(Dictionary dictionaryArg); | 373 void voidMethodDictionaryArg(Dictionary dictionaryArg); |
373 void voidMethodNodeFilterArg(NodeFilter nodeFilterArg); | 374 void voidMethodNodeFilterArg(NodeFilter nodeFilterArg); |
374 void voidMethodPromiseArg(Promise promiseArg); | 375 void voidMethodPromiseArg(Promise promiseArg); |
375 void voidMethodSerializedScriptValueArg(SerializedScriptValue serializedScri
ptValueArg); | 376 void voidMethodSerializedScriptValueArg(SerializedScriptValue serializedScri
ptValueArg); |
376 void voidMethodXPathNSResolverArg(XPathNSResolver xPathNSResolverArg); | 377 void voidMethodXPathNSResolverArg(XPathNSResolver xPathNSResolverArg); |
(...skipping 173 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
550 [ImplementedInPrivateScript] readonly attribute short readonlyShortAttribute
; | 551 [ImplementedInPrivateScript] readonly attribute short readonlyShortAttribute
; |
551 [ImplementedInPrivateScript] attribute short shortAttribute; | 552 [ImplementedInPrivateScript] attribute short shortAttribute; |
552 [ImplementedInPrivateScript] attribute DOMString stringAttribute; | 553 [ImplementedInPrivateScript] attribute DOMString stringAttribute; |
553 [ImplementedInPrivateScript] attribute Node nodeAttribute; | 554 [ImplementedInPrivateScript] attribute Node nodeAttribute; |
554 [OnlyExposedToPrivateScript] short methodImplementedInCPPForPrivateScriptOnl
y(short value1, short value2); | 555 [OnlyExposedToPrivateScript] short methodImplementedInCPPForPrivateScriptOnl
y(short value1, short value2); |
555 [OnlyExposedToPrivateScript] attribute DOMString attributeImplementedInCPPFo
rPrivateScriptOnly; | 556 [OnlyExposedToPrivateScript] attribute DOMString attributeImplementedInCPPFo
rPrivateScriptOnly; |
556 [ImplementedInPrivateScript, OnlyExposedToPrivateScript] short methodForPriv
ateScriptOnly(short value1, short value2); | 557 [ImplementedInPrivateScript, OnlyExposedToPrivateScript] short methodForPriv
ateScriptOnly(short value1, short value2); |
557 [ImplementedInPrivateScript, OnlyExposedToPrivateScript] attribute DOMString
attributeForPrivateScriptOnly; | 558 [ImplementedInPrivateScript, OnlyExposedToPrivateScript] attribute DOMString
attributeForPrivateScriptOnly; |
558 [ImplementedInPrivateScript] attribute TestEnum enumForPrivateScript; | 559 [ImplementedInPrivateScript] attribute TestEnum enumForPrivateScript; |
559 }; | 560 }; |
OLD | NEW |