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

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

Issue 1083003004: bindings: Moves toV8 and v8SetReturnValue out to ToV8.h and V8Binding.h. (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: 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 | 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 16 matching lines...) Expand all
27 * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE 27 * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
28 * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. 28 * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
29 */ 29 */
30 30
31 // Test for interface extended attributes and special operations. 31 // Test for interface extended attributes and special operations.
32 // Also used as a target by TestObject 32 // Also used as a target by TestObject
33 33
34 [ 34 [
35 ActiveDOMObject, 35 ActiveDOMObject,
36 Conditional=CONDITION, 36 Conditional=CONDITION,
37 Custom=(LegacyCallAsFunction,ToV8), 37 Custom=(LegacyCallAsFunction),
haraken 2015/04/24 11:57:39 You won't need ().
Yuki 2015/04/27 12:42:34 Done.
38 DoNotCheckConstants, 38 DoNotCheckConstants,
39 ImplementedAs=TestInterfaceImplementation, 39 ImplementedAs=TestInterfaceImplementation,
40 Iterable, 40 Iterable,
41 Measure, 41 Measure,
42 RuntimeEnabled=FeatureName, 42 RuntimeEnabled=FeatureName,
43 SetWrapperReferenceTo(TestInterface referencedName), 43 SetWrapperReferenceTo(TestInterface referencedName),
44 TypeChecking=Interface, 44 TypeChecking=Interface,
45 Exposed=(Worker,Window), 45 Exposed=(Worker,Window),
46 ] interface TestInterface : TestInterfaceEmpty { 46 ] interface TestInterface : TestInterfaceEmpty {
47 // members needed to test [ImplementedAs], as this affect attribute 47 // members needed to test [ImplementedAs], as this affect attribute
(...skipping 63 matching lines...) Expand 10 before | Expand all | Expand 10 after
111 Promise promiseMethodPartialOverload(); 111 Promise promiseMethodPartialOverload();
112 Promise promiseMethodPartialOverload(Window window); 112 Promise promiseMethodPartialOverload(Window window);
113 static Promise staticPromiseMethodPartialOverload(); 113 static Promise staticPromiseMethodPartialOverload();
114 114
115 [LegacyInterfaceTypeChecking] void legacyInterfaceTypeCheckingMethod(TestInt erfaceEmpty testInterfaceEmptyArg); 115 [LegacyInterfaceTypeChecking] void legacyInterfaceTypeCheckingMethod(TestInt erfaceEmpty testInterfaceEmptyArg);
116 }; 116 };
117 117
118 TestInterface implements TestImplements; 118 TestInterface implements TestImplements;
119 // TestInterface implements TestImplements2; // at implement*ed* interface 119 // TestInterface implements TestImplements2; // at implement*ed* interface
120 TestInterface implements TestImplements3; 120 TestInterface implements TestImplements3;
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698