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

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

Issue 144033007: IDL compiler: ForMainWorld for method arguments (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Created 6 years, 10 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 | Annotate | Revision Log
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 393 matching lines...) Expand 10 before | Expand all | Expand 10 after
404 [Custom] void customVoidMethod(); 404 [Custom] void customVoidMethod();
405 [Conditional=CONDITION, Custom] void conditionalConditionCustomVoidMethod(); 405 [Conditional=CONDITION, Custom] void conditionalConditionCustomVoidMethod();
406 [CustomElementCallbacks] void customElementCallbacksVoidMethod(); 406 [CustomElementCallbacks] void customElementCallbacksVoidMethod();
407 [DeprecateAs=voidMethod] void deprecatedVoidMethod(); 407 [DeprecateAs=voidMethod] void deprecatedVoidMethod();
408 [DoNotCheckSignature] void doNotCheckSignatureVoidMethod(); 408 [DoNotCheckSignature] void doNotCheckSignatureVoidMethod();
409 [ImplementedAs=implementedAsMethodName] void implementedAsVoidMethod(); 409 [ImplementedAs=implementedAsMethodName] void implementedAsVoidMethod();
410 [MeasureAs=TestFeature] void measureAsVoidMethod(); 410 [MeasureAs=TestFeature] void measureAsVoidMethod();
411 [NotEnumerable] void notEnumerableVoidMethod(); 411 [NotEnumerable] void notEnumerableVoidMethod();
412 [PerContextEnabled=FeatureName] void perContextEnabledVoidMethod(); 412 [PerContextEnabled=FeatureName] void perContextEnabledVoidMethod();
413 [PerWorldBindings] void perWorldBindingsVoidMethod(); 413 [PerWorldBindings] void perWorldBindingsVoidMethod();
414 [PerWorldBindings] void perWorldBindingsVoidMethodTestInterfaceEmptyArg(Test InterfaceEmpty testInterfaceEmptyArg);
414 [ActivityLogging=ForAllWorlds, PerWorldBindings] void activityLoggingForAllW orldsPerWorldBindingsVoidMethod(); 415 [ActivityLogging=ForAllWorlds, PerWorldBindings] void activityLoggingForAllW orldsPerWorldBindingsVoidMethod();
415 [ActivityLogging=ForIsolatedWorlds, PerWorldBindings] void activityLoggingFo rIsolatedWorldsPerWorldBindingsVoidMethod(); 416 [ActivityLogging=ForIsolatedWorlds, PerWorldBindings] void activityLoggingFo rIsolatedWorldsPerWorldBindingsVoidMethod();
416 [PerWorldBindings] void perWorldBindingsVoidMethodTestInterfaceEmptyArg(Test InterfaceEmpty testInterfaceEmptyArg);
417 [RaisesException] void raisesExceptionVoidMethod(); 417 [RaisesException] void raisesExceptionVoidMethod();
418 [RaisesException] DOMString raisesExceptionStringMethod(); 418 [RaisesException] DOMString raisesExceptionStringMethod();
419 [RaisesException] void raisesExceptionVoidMethodOptionalLongArg(optional lon g optionalLongArg); 419 [RaisesException] void raisesExceptionVoidMethodOptionalLongArg(optional lon g optionalLongArg);
420 [RaisesException] void raisesExceptionVoidMethodTestCallbackInterfaceArg(Tes tCallbackInterface testCallbackInterfaceArg); 420 [RaisesException] void raisesExceptionVoidMethodTestCallbackInterfaceArg(Tes tCallbackInterface testCallbackInterfaceArg);
421 [RaisesException] void raisesExceptionVoidMethodOptionalTestCallbackInterfac eArg(optional TestCallbackInterface optionalTestCallbackInterfaceArg); 421 [RaisesException] void raisesExceptionVoidMethodOptionalTestCallbackInterfac eArg(optional TestCallbackInterface optionalTestCallbackInterfaceArg);
422 [RaisesException] TestInterfaceEmpty raisesExceptionTestInterfaceEmptyVoidMe thod(); 422 [RaisesException] TestInterfaceEmpty raisesExceptionTestInterfaceEmptyVoidMe thod();
423 [ReadOnly] void readOnlyVoidMethod(); 423 [ReadOnly] void readOnlyVoidMethod();
424 [NotEnumerable, ReadOnly] void notEnumerableReadOnlyVoidMethod(); 424 [NotEnumerable, ReadOnly] void notEnumerableReadOnlyVoidMethod();
425 [RuntimeEnabled=FeatureName] void runtimeEnabledVoidMethod(); 425 [RuntimeEnabled=FeatureName] void runtimeEnabledVoidMethod();
426 [PerWorldBindings, RuntimeEnabled=FeatureName] void perWorldBindingsRuntimeE nabledVoidMethod(); 426 [PerWorldBindings, RuntimeEnabled=FeatureName] void perWorldBindingsRuntimeE nabledVoidMethod();
427 [StrictTypeChecking] void strictTypeCheckingVoidMethodTestInterfaceEmptyArg( TestInterfaceEmpty testInterfaceEmptyArg); 427 [StrictTypeChecking] void strictTypeCheckingVoidMethodTestInterfaceEmptyArg( TestInterfaceEmpty testInterfaceEmptyArg);
428 [StrictTypeChecking] void strictTypeCheckingVoidMethodNullableTestInterfaceE mptyArg(TestInterfaceEmpty? testInterfaceEmptyArg); 428 [StrictTypeChecking] void strictTypeCheckingVoidMethodNullableTestInterfaceE mptyArg(TestInterfaceEmpty? testInterfaceEmptyArg);
429 [TreatReturnedNullStringAs=Null] DOMString treatReturnedNullStringAsNullStri ngMethod(); 429 [TreatReturnedNullStringAs=Null] DOMString treatReturnedNullStringAsNullStri ngMethod();
430 [TreatReturnedNullStringAs=Undefined] DOMString treatReturnedNullStringAsUnd efinedStringMethod(); 430 [TreatReturnedNullStringAs=Undefined] DOMString treatReturnedNullStringAsUnd efinedStringMethod();
431 [Unforgeable] void unforgeableVoidMethod(); 431 [Unforgeable] void unforgeableVoidMethod();
432 }; 432 };
OLDNEW
« no previous file with comments | « Source/bindings/tests/idls/TestInterfaceNode.idl ('k') | Source/bindings/tests/results/V8TestInterfaceNode.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698