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

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

Issue 715353002: IDL: Support callback function types in overload resolution (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: Created 6 years, 1 month 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
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 430 matching lines...) Expand 10 before | Expand all | Expand 10 after
441 void overloadedMethodF(optional DOMString stringArg); 441 void overloadedMethodF(optional DOMString stringArg);
442 void overloadedMethodF(double doubleArg); 442 void overloadedMethodF(double doubleArg);
443 void overloadedMethodG(long longArg); 443 void overloadedMethodG(long longArg);
444 void overloadedMethodG(optional TestInterfaceEmpty? testInterfaceEmptyOrNull Arg = null); 444 void overloadedMethodG(optional TestInterfaceEmpty? testInterfaceEmptyOrNull Arg = null);
445 void overloadedMethodH(TestInterface testInterfaceArg); 445 void overloadedMethodH(TestInterface testInterfaceArg);
446 void overloadedMethodH(TestInterfaceEmpty testInterfaceEmptyArg); 446 void overloadedMethodH(TestInterfaceEmpty testInterfaceEmptyArg);
447 void overloadedMethodI(DOMString stringArg); 447 void overloadedMethodI(DOMString stringArg);
448 void overloadedMethodI(double doubleArg); 448 void overloadedMethodI(double doubleArg);
449 void overloadedMethodJ(DOMString stringArg); 449 void overloadedMethodJ(DOMString stringArg);
450 void overloadedMethodJ(TestDictionary testDictionaryArg); 450 void overloadedMethodJ(TestDictionary testDictionaryArg);
451 void overloadedMethodK(Function functionArg);
452 void overloadedMethodK(DOMString stringArg);
451 453
452 Promise promiseOverloadMethod(); 454 Promise promiseOverloadMethod();
453 Promise promiseOverloadMethod(Window arg1, double arg2); 455 Promise promiseOverloadMethod(Window arg1, double arg2);
454 Promise promiseOverloadMethod(Document arg1, double arg2); 456 Promise promiseOverloadMethod(Document arg1, double arg2);
455 457
456 [PerWorldBindings] void overloadedPerWorldBindingsMethod(); 458 [PerWorldBindings] void overloadedPerWorldBindingsMethod();
457 [PerWorldBindings] void overloadedPerWorldBindingsMethod(long longArg); 459 [PerWorldBindings] void overloadedPerWorldBindingsMethod(long longArg);
458 460
459 static void overloadedStaticMethod(long longArg); 461 static void overloadedStaticMethod(long longArg);
460 static void overloadedStaticMethod(long longArg1, long longArg2); 462 static void overloadedStaticMethod(long longArg1, long longArg2);
(...skipping 104 matching lines...) Expand 10 before | Expand all | Expand 10 after
565 [ImplementedInPrivateScript] readonly attribute short readonlyShortAttribute ; 567 [ImplementedInPrivateScript] readonly attribute short readonlyShortAttribute ;
566 [ImplementedInPrivateScript] attribute short shortAttribute; 568 [ImplementedInPrivateScript] attribute short shortAttribute;
567 [ImplementedInPrivateScript] attribute DOMString stringAttribute; 569 [ImplementedInPrivateScript] attribute DOMString stringAttribute;
568 [ImplementedInPrivateScript] attribute Node nodeAttribute; 570 [ImplementedInPrivateScript] attribute Node nodeAttribute;
569 [OnlyExposedToPrivateScript] short methodImplementedInCPPForPrivateScriptOnl y(short value1, short value2); 571 [OnlyExposedToPrivateScript] short methodImplementedInCPPForPrivateScriptOnl y(short value1, short value2);
570 [OnlyExposedToPrivateScript] attribute DOMString attributeImplementedInCPPFo rPrivateScriptOnly; 572 [OnlyExposedToPrivateScript] attribute DOMString attributeImplementedInCPPFo rPrivateScriptOnly;
571 [ImplementedInPrivateScript, OnlyExposedToPrivateScript] short methodForPriv ateScriptOnly(short value1, short value2); 573 [ImplementedInPrivateScript, OnlyExposedToPrivateScript] short methodForPriv ateScriptOnly(short value1, short value2);
572 [ImplementedInPrivateScript, OnlyExposedToPrivateScript] attribute DOMString attributeForPrivateScriptOnly; 574 [ImplementedInPrivateScript, OnlyExposedToPrivateScript] attribute DOMString attributeForPrivateScriptOnly;
573 [ImplementedInPrivateScript] attribute TestEnum enumForPrivateScript; 575 [ImplementedInPrivateScript] attribute TestEnum enumForPrivateScript;
574 }; 576 };
OLDNEW
« no previous file with comments | « Source/bindings/scripts/v8_interface.py ('k') | Source/bindings/tests/results/core/V8TestObject.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698