Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(40)

Side by Side Diff: Source/bindings/tests/idls/TestObject.idl

Issue 474813004: IDL: Fix overload resolution for dictionary types (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: the fix Created 6 years, 4 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
« no previous file with comments | « Source/bindings/scripts/v8_interface.py ('k') | Source/bindings/tests/results/V8TestObject.cpp » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
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 415 matching lines...) Expand 10 before | Expand all | Expand 10 after
426 void overloadedMethodE(long longArg); 426 void overloadedMethodE(long longArg);
427 void overloadedMethodE(TestInterfaceEmpty? testInterfaceEmptyOrNullArg); 427 void overloadedMethodE(TestInterfaceEmpty? testInterfaceEmptyOrNullArg);
428 void overloadedMethodF(optional DOMString stringArg); 428 void overloadedMethodF(optional DOMString stringArg);
429 void overloadedMethodF(double doubleArg); 429 void overloadedMethodF(double doubleArg);
430 void overloadedMethodG(long longArg); 430 void overloadedMethodG(long longArg);
431 void overloadedMethodG(optional TestInterfaceEmpty? testInterfaceEmptyOrNull Arg = null); 431 void overloadedMethodG(optional TestInterfaceEmpty? testInterfaceEmptyOrNull Arg = null);
432 void overloadedMethodH(TestInterface testInterfaceArg); 432 void overloadedMethodH(TestInterface testInterfaceArg);
433 void overloadedMethodH(TestInterfaceEmpty testInterfaceEmptyArg); 433 void overloadedMethodH(TestInterfaceEmpty testInterfaceEmptyArg);
434 void overloadedMethodI(DOMString stringArg); 434 void overloadedMethodI(DOMString stringArg);
435 void overloadedMethodI(double doubleArg); 435 void overloadedMethodI(double doubleArg);
436 void overloadedMethodJ(DOMString stringArg);
437 void overloadedMethodJ(TestDictionary testDictionaryArg);
436 438
437 439
438 [PerWorldBindings] void overloadedPerWorldBindingsMethod(); 440 [PerWorldBindings] void overloadedPerWorldBindingsMethod();
439 [PerWorldBindings] void overloadedPerWorldBindingsMethod(long longArg); 441 [PerWorldBindings] void overloadedPerWorldBindingsMethod(long longArg);
440 442
441 static void overloadedStaticMethod(long longArg); 443 static void overloadedStaticMethod(long longArg);
442 static void overloadedStaticMethod(long longArg1, long longArg2); 444 static void overloadedStaticMethod(long longArg1, long longArg2);
443 445
444 // Extended attributes for arguments 446 // Extended attributes for arguments
445 // [Clamp] 447 // [Clamp]
(...skipping 97 matching lines...) Expand 10 before | Expand all | Expand 10 after
543 [ImplementedInPrivateScript] Node nodeMethodWithVariousArgumentsImplementedI nPrivateScript(Document document, Node node, short value1, double value2, DOMStr ing string); 545 [ImplementedInPrivateScript] Node nodeMethodWithVariousArgumentsImplementedI nPrivateScript(Document document, Node node, short value1, double value2, DOMStr ing string);
544 [ImplementedInPrivateScript] readonly attribute short readonlyShortAttribute ; 546 [ImplementedInPrivateScript] readonly attribute short readonlyShortAttribute ;
545 [ImplementedInPrivateScript] attribute short shortAttribute; 547 [ImplementedInPrivateScript] attribute short shortAttribute;
546 [ImplementedInPrivateScript] attribute DOMString stringAttribute; 548 [ImplementedInPrivateScript] attribute DOMString stringAttribute;
547 [ImplementedInPrivateScript] attribute Node nodeAttribute; 549 [ImplementedInPrivateScript] attribute Node nodeAttribute;
548 [OnlyExposedToPrivateScript] short methodImplementedInCPPForPrivateScriptOnl y(short value1, short value2); 550 [OnlyExposedToPrivateScript] short methodImplementedInCPPForPrivateScriptOnl y(short value1, short value2);
549 [OnlyExposedToPrivateScript] attribute DOMString attributeImplementedInCPPFo rPrivateScriptOnly; 551 [OnlyExposedToPrivateScript] attribute DOMString attributeImplementedInCPPFo rPrivateScriptOnly;
550 [ImplementedInPrivateScript, OnlyExposedToPrivateScript] short methodForPriv ateScriptOnly(short value1, short value2); 552 [ImplementedInPrivateScript, OnlyExposedToPrivateScript] short methodForPriv ateScriptOnly(short value1, short value2);
551 [ImplementedInPrivateScript, OnlyExposedToPrivateScript] attribute DOMString attributeForPrivateScriptOnly; 553 [ImplementedInPrivateScript, OnlyExposedToPrivateScript] attribute DOMString attributeForPrivateScriptOnly;
552 }; 554 };
OLDNEW
« no previous file with comments | « Source/bindings/scripts/v8_interface.py ('k') | Source/bindings/tests/results/V8TestObject.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698