Chromium Code Reviews| 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 348 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
| 359 // Callback interface types | 359 // Callback interface types |
| 360 void voidMethodTestCallbackInterfaceArg(TestCallbackInterface testCallbackIn terfaceArg); | 360 void voidMethodTestCallbackInterfaceArg(TestCallbackInterface testCallbackIn terfaceArg); |
| 361 void voidMethodOptionalTestCallbackInterfaceArg(optional TestCallbackInterfa ce optionalTestCallbackInterfaceArg); | 361 void voidMethodOptionalTestCallbackInterfaceArg(optional TestCallbackInterfa ce optionalTestCallbackInterfaceArg); |
| 362 void voidMethodTestCallbackInterfaceOrNullArg(TestCallbackInterface? testCal lbackInterfaceArg); | 362 void voidMethodTestCallbackInterfaceOrNullArg(TestCallbackInterface? testCal lbackInterfaceArg); |
| 363 // Enumerations | 363 // Enumerations |
| 364 TestEnum testEnumMethod(); | 364 TestEnum testEnumMethod(); |
| 365 void voidMethodTestEnumArg(TestEnum testEnumTypeArg); | 365 void voidMethodTestEnumArg(TestEnum testEnumTypeArg); |
| 366 // Exceptional types | 366 // Exceptional types |
| 367 Dictionary dictionaryMethod(); | 367 Dictionary dictionaryMethod(); |
| 368 NodeFilter nodeFilterMethod(); | 368 NodeFilter nodeFilterMethod(); |
| 369 Promise promiseMethod(); | 369 Promise promiseMethod(long arg1, Dictionary arg2, DOMString arg3, DOMString. .. variadic); |
|
bashi
2014/07/31 02:02:24
Is it possible to use enums instead of Dictionary
yhirano
2014/07/31 03:38:03
Can you tell me your plan?
I added Dictionary test
bashi
2014/07/31 04:38:42
In my plan, Dictionary will be replaced by specifi
yhirano
2014/08/01 03:52:54
Thank you.
Let me leave it be to keep the test cov
| |
| 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); |
| 377 void voidMethodDictionarySequenceArg(sequence<Dictionary> dictionarySequence Arg); | 378 void voidMethodDictionarySequenceArg(sequence<Dictionary> dictionarySequence Arg); |
| 378 | 379 |
| 379 // Arguments | 380 // Arguments |
| (...skipping 162 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
| 542 [ImplementedInPrivateScript] Node nodeMethodWithVariousArgumentsImplementedI nPrivateScript(Document document, Node node, short value1, double value2, DOMStr ing string); | 543 [ImplementedInPrivateScript] Node nodeMethodWithVariousArgumentsImplementedI nPrivateScript(Document document, Node node, short value1, double value2, DOMStr ing string); |
| 543 [ImplementedInPrivateScript] readonly attribute short readonlyShortAttribute ; | 544 [ImplementedInPrivateScript] readonly attribute short readonlyShortAttribute ; |
| 544 [ImplementedInPrivateScript] attribute short shortAttribute; | 545 [ImplementedInPrivateScript] attribute short shortAttribute; |
| 545 [ImplementedInPrivateScript] attribute DOMString stringAttribute; | 546 [ImplementedInPrivateScript] attribute DOMString stringAttribute; |
| 546 [ImplementedInPrivateScript] attribute Node nodeAttribute; | 547 [ImplementedInPrivateScript] attribute Node nodeAttribute; |
| 547 [OnlyExposedToPrivateScript] short methodImplementedInCPPForPrivateScriptOnl y(short value1, short value2); | 548 [OnlyExposedToPrivateScript] short methodImplementedInCPPForPrivateScriptOnl y(short value1, short value2); |
| 548 [OnlyExposedToPrivateScript] attribute DOMString attributeImplementedInCPPFo rPrivateScriptOnly; | 549 [OnlyExposedToPrivateScript] attribute DOMString attributeImplementedInCPPFo rPrivateScriptOnly; |
| 549 [ImplementedInPrivateScript, OnlyExposedToPrivateScript] short methodForPriv ateScriptOnly(short value1, short value2); | 550 [ImplementedInPrivateScript, OnlyExposedToPrivateScript] short methodForPriv ateScriptOnly(short value1, short value2); |
| 550 [ImplementedInPrivateScript, OnlyExposedToPrivateScript] attribute DOMString attributeForPrivateScriptOnly; | 551 [ImplementedInPrivateScript, OnlyExposedToPrivateScript] attribute DOMString attributeForPrivateScriptOnly; |
| 551 }; | 552 }; |
| OLD | NEW |