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

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

Issue 1019453002: IDL: Add [Custom=CallEpilogue] to eliminate CG special cases (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: fix after rebase Created 5 years, 9 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 496 matching lines...) Expand 10 before | Expand all | Expand 10 after
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 [CheckSecurity=Node] void checkSecurityForNodeVoidMethod(); 513 [CheckSecurity=Node] void checkSecurityForNodeVoidMethod();
514 [Conditional=CONDITION] void conditionalConditionVoidMethod(); 514 [Conditional=CONDITION] void conditionalConditionVoidMethod();
515 [Conditional=CONDITION] static void conditionalConditionStaticVoidMethod(); 515 [Conditional=CONDITION] static void conditionalConditionStaticVoidMethod();
516 [Custom] void customVoidMethod(); 516 [Custom] void customVoidMethod();
517 [Custom=CallEpilogue] void customCallEpilogueVoidMethod();
517 [Conditional=CONDITION, Custom] void conditionalConditionCustomVoidMethod(); 518 [Conditional=CONDITION, Custom] void conditionalConditionCustomVoidMethod();
518 [CustomElementCallbacks] void customElementCallbacksVoidMethod(); 519 [CustomElementCallbacks] void customElementCallbacksVoidMethod();
519 [DeprecateAs=voidMethod] void deprecatedVoidMethod(); 520 [DeprecateAs=voidMethod] void deprecatedVoidMethod();
520 [DoNotCheckSignature] void doNotCheckSignatureVoidMethod(); 521 [DoNotCheckSignature] void doNotCheckSignatureVoidMethod();
521 [ImplementedAs=implementedAsMethodName] void implementedAsVoidMethod(); 522 [ImplementedAs=implementedAsMethodName] void implementedAsVoidMethod();
522 [MeasureAs=TestFeature] void measureAsVoidMethod(); 523 [MeasureAs=TestFeature] void measureAsVoidMethod();
523 [Measure] void measureMethod(); 524 [Measure] void measureMethod();
524 [Measure] void measureOverloadedMethod(); 525 [Measure] void measureOverloadedMethod();
525 [Measure] void measureOverloadedMethod(long arg); 526 [Measure] void measureOverloadedMethod(long arg);
526 [DeprecateAs=TestFeatureA] void DeprecateAsOverloadedMethod(); 527 [DeprecateAs=TestFeatureA] void DeprecateAsOverloadedMethod();
(...skipping 70 matching lines...) Expand 10 before | Expand all | Expand 10 after
597 [ImplementedInPrivateScript] attribute DOMString stringAttribute; 598 [ImplementedInPrivateScript] attribute DOMString stringAttribute;
598 [ImplementedInPrivateScript] attribute Node nodeAttribute; 599 [ImplementedInPrivateScript] attribute Node nodeAttribute;
599 [OnlyExposedToPrivateScript] short methodImplementedInCPPForPrivateScriptOnl y(short value1, short value2); 600 [OnlyExposedToPrivateScript] short methodImplementedInCPPForPrivateScriptOnl y(short value1, short value2);
600 [OnlyExposedToPrivateScript] attribute DOMString attributeImplementedInCPPFo rPrivateScriptOnly; 601 [OnlyExposedToPrivateScript] attribute DOMString attributeImplementedInCPPFo rPrivateScriptOnly;
601 [ImplementedInPrivateScript, OnlyExposedToPrivateScript] short methodForPriv ateScriptOnly(short value1, short value2); 602 [ImplementedInPrivateScript, OnlyExposedToPrivateScript] short methodForPriv ateScriptOnly(short value1, short value2);
602 [ImplementedInPrivateScript, OnlyExposedToPrivateScript] attribute DOMString attributeForPrivateScriptOnly; 603 [ImplementedInPrivateScript, OnlyExposedToPrivateScript] attribute DOMString attributeForPrivateScriptOnly;
603 [ImplementedInPrivateScript] attribute TestEnum enumForPrivateScript; 604 [ImplementedInPrivateScript] attribute TestEnum enumForPrivateScript;
604 605
605 maplike<long, DOMStringOrDouble>; 606 maplike<long, DOMStringOrDouble>;
606 }; 607 };
OLDNEW
« no previous file with comments | « Source/bindings/templates/methods.cpp ('k') | Source/bindings/tests/results/core/V8TestObject.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698