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

Side by Side Diff: third_party/WebKit/Source/bindings/tests/idls/modules/TestInterface5.idl

Issue 2676663006: Remove SetWrapperReferenceTo and SetWrapperReferenceFrom (Closed)
Patch Set: Rebase on master Created 3 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
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 23 matching lines...) Expand all
34 enum TestEnumModules { "EnumModulesValue1", "EnumModulesValue2" }; 34 enum TestEnumModules { "EnumModulesValue1", "EnumModulesValue2" };
35 callback VoidCallbackFunctionModules = void (); 35 callback VoidCallbackFunctionModules = void ();
36 36
37 [ 37 [
38 ActiveScriptWrappable, 38 ActiveScriptWrappable,
39 DependentLifetime, 39 DependentLifetime,
40 Custom=LegacyCallAsFunction, 40 Custom=LegacyCallAsFunction,
41 DoNotCheckConstants, 41 DoNotCheckConstants,
42 ImplementedAs=TestInterface5Implementation, 42 ImplementedAs=TestInterface5Implementation,
43 RuntimeEnabled=FeatureName, 43 RuntimeEnabled=FeatureName,
44 SetWrapperReferenceTo(TestInterface5 referencedName),
45 Exposed=(Worker,Window), 44 Exposed=(Worker,Window),
46 ] interface TestInterface5 : TestInterfaceEmpty { 45 ] interface TestInterface5 : TestInterfaceEmpty {
47 // members needed to test [ImplementedAs], as this affect attribute 46 // members needed to test [ImplementedAs], as this affect attribute
48 // configuration and method configuration 47 // configuration and method configuration
49 const unsigned long UNSIGNED_LONG = 0; 48 const unsigned long UNSIGNED_LONG = 0;
50 [Reflect=CONST_CPP] const short CONST_JAVASCRIPT = 1; 49 [Reflect=CONST_CPP] const short CONST_JAVASCRIPT = 1;
51 50
52 attribute TestInterface5 testInterfaceAttribute; // Self-referential interfa ce type with [ImplementedAs] 51 attribute TestInterface5 testInterfaceAttribute; // Self-referential interfa ce type with [ImplementedAs]
53 attribute TestInterface5Constructor testInterfaceConstructorAttribute; 52 attribute TestInterface5Constructor testInterfaceConstructorAttribute;
54 attribute double doubleAttribute; 53 attribute double doubleAttribute;
(...skipping 37 matching lines...) Expand 10 before | Expand all | Expand 10 after
92 // Union types 91 // Union types
93 void voidMethodBooleanOrDOMStringArg((boolean or DOMString) arg); 92 void voidMethodBooleanOrDOMStringArg((boolean or DOMString) arg);
94 void voidMethodDoubleOrDOMStringArg((double or DOMString) arg); 93 void voidMethodDoubleOrDOMStringArg((double or DOMString) arg);
95 94
96 // Callback functions 95 // Callback functions
97 void voidMethodVoidExperimentalCallbackFunction(VoidExperimentalCallbackFunc tion arg); 96 void voidMethodVoidExperimentalCallbackFunction(VoidExperimentalCallbackFunc tion arg);
98 void voidMethodVoidCallbackFunctionModulesArg(VoidCallbackFunctionModules ar g); 97 void voidMethodVoidCallbackFunctionModulesArg(VoidCallbackFunctionModules ar g);
99 98
100 iterable<any>; 99 iterable<any>;
101 }; 100 };
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698