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

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

Issue 1035023005: [bindings] Support CallWith=ThisValue for generic interface methods (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: Binding patch alone. Created 5 years, 8 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
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 492 matching lines...) Expand 10 before | Expand all | Expand 10 after
503 // Extended attributes for methods 503 // Extended attributes for methods
504 [LogActivity, LogAllWorlds] void activityLoggingAccessForAllWorldsMethod(); 504 [LogActivity, LogAllWorlds] void activityLoggingAccessForAllWorldsMethod();
505 [CallWith=ExecutionContext] void callWithExecutionContextVoidMethod(); 505 [CallWith=ExecutionContext] void callWithExecutionContextVoidMethod();
506 [CallWith=ScriptState] void callWithScriptStateVoidMethod(); 506 [CallWith=ScriptState] void callWithScriptStateVoidMethod();
507 [CallWith=ScriptState] long callWithScriptStateLongMethod(); 507 [CallWith=ScriptState] long callWithScriptStateLongMethod();
508 [CallWith=(ScriptState,ExecutionContext)] void callWithScriptStateExecutionC ontextVoidMethod(); 508 [CallWith=(ScriptState,ExecutionContext)] void callWithScriptStateExecutionC ontextVoidMethod();
509 [CallWith=(ScriptState,ScriptArguments)] void callWithScriptStateScriptArgum entsVoidMethod(); 509 [CallWith=(ScriptState,ScriptArguments)] void callWithScriptStateScriptArgum entsVoidMethod();
510 [CallWith=(ScriptState,ScriptArguments)] void callWithScriptStateScriptArgum entsVoidMethodOptionalBooleanArg(optional boolean optionalBooleanArg); 510 [CallWith=(ScriptState,ScriptArguments)] void callWithScriptStateScriptArgum entsVoidMethodOptionalBooleanArg(optional boolean optionalBooleanArg);
511 [CallWith=ActiveWindow] void callWithActiveWindow(); 511 [CallWith=ActiveWindow] void callWithActiveWindow();
512 [CallWith=(ActiveWindow,FirstWindow)] void callWithActiveWindowScriptWindow( ); 512 [CallWith=(ActiveWindow,FirstWindow)] void callWithActiveWindowScriptWindow( );
513 [CallWith=ThisValue] void callWithThisValue();
513 [CheckSecurity=Node] void checkSecurityForNodeVoidMethod(); 514 [CheckSecurity=Node] void checkSecurityForNodeVoidMethod();
514 [Conditional=CONDITION] void conditionalConditionVoidMethod(); 515 [Conditional=CONDITION] void conditionalConditionVoidMethod();
515 [Conditional=CONDITION] static void conditionalConditionStaticVoidMethod(); 516 [Conditional=CONDITION] static void conditionalConditionStaticVoidMethod();
516 [Custom] void customVoidMethod(); 517 [Custom] void customVoidMethod();
517 [Custom=CallEpilogue] void customCallEpilogueVoidMethod(); 518 [Custom=CallEpilogue] void customCallEpilogueVoidMethod();
518 [Conditional=CONDITION, Custom] void conditionalConditionCustomVoidMethod(); 519 [Conditional=CONDITION, Custom] void conditionalConditionCustomVoidMethod();
519 [CustomElementCallbacks] void customElementCallbacksVoidMethod(); 520 [CustomElementCallbacks] void customElementCallbacksVoidMethod();
520 [DeprecateAs=voidMethod] void deprecatedVoidMethod(); 521 [DeprecateAs=voidMethod] void deprecatedVoidMethod();
521 [DoNotCheckSignature] void doNotCheckSignatureVoidMethod(); 522 [DoNotCheckSignature] void doNotCheckSignatureVoidMethod();
522 [ImplementedAs=implementedAsMethodName] void implementedAsVoidMethod(); 523 [ImplementedAs=implementedAsMethodName] void implementedAsVoidMethod();
(...skipping 75 matching lines...) Expand 10 before | Expand all | Expand 10 after
598 [ImplementedInPrivateScript] attribute DOMString stringAttribute; 599 [ImplementedInPrivateScript] attribute DOMString stringAttribute;
599 [ImplementedInPrivateScript] attribute Node nodeAttribute; 600 [ImplementedInPrivateScript] attribute Node nodeAttribute;
600 [OnlyExposedToPrivateScript] short methodImplementedInCPPForPrivateScriptOnl y(short value1, short value2); 601 [OnlyExposedToPrivateScript] short methodImplementedInCPPForPrivateScriptOnl y(short value1, short value2);
601 [OnlyExposedToPrivateScript] attribute DOMString attributeImplementedInCPPFo rPrivateScriptOnly; 602 [OnlyExposedToPrivateScript] attribute DOMString attributeImplementedInCPPFo rPrivateScriptOnly;
602 [ImplementedInPrivateScript, OnlyExposedToPrivateScript] short methodForPriv ateScriptOnly(short value1, short value2); 603 [ImplementedInPrivateScript, OnlyExposedToPrivateScript] short methodForPriv ateScriptOnly(short value1, short value2);
603 [ImplementedInPrivateScript, OnlyExposedToPrivateScript] attribute DOMString attributeForPrivateScriptOnly; 604 [ImplementedInPrivateScript, OnlyExposedToPrivateScript] attribute DOMString attributeForPrivateScriptOnly;
604 [ImplementedInPrivateScript] attribute TestEnum enumForPrivateScript; 605 [ImplementedInPrivateScript] attribute TestEnum enumForPrivateScript;
605 606
606 maplike<long, DOMStringOrDouble>; 607 maplike<long, DOMStringOrDouble>;
607 }; 608 };
OLDNEW
« no previous file with comments | « Source/bindings/templates/methods.cpp ('k') | Source/bindings/tests/results/core/V8TestObject.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698