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

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

Issue 2341673004: [Binding] Replace 'Unscopeable' with 'Unscopable' (Closed)
Patch Set: . Created 4 years, 3 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 243 matching lines...) Expand 10 before | Expand all | Expand 10 after
254 [TreatNullAs=NullString] attribute DOMString treatNullAsNullStringStringAttr ibute; 254 [TreatNullAs=NullString] attribute DOMString treatNullAsNullStringStringAttr ibute;
255 [LegacyInterfaceTypeChecking] attribute float legacyInterfaceTypeCheckingFlo atAttribute; // nop for non-interface types 255 [LegacyInterfaceTypeChecking] attribute float legacyInterfaceTypeCheckingFlo atAttribute; // nop for non-interface types
256 [LegacyInterfaceTypeChecking] attribute TestInterface legacyInterfaceTypeChe ckingTestInterfaceAttribute; 256 [LegacyInterfaceTypeChecking] attribute TestInterface legacyInterfaceTypeChe ckingTestInterfaceAttribute;
257 [LegacyInterfaceTypeChecking] attribute TestInterface? legacyInterfaceTypeCh eckingTestInterfaceOrNullAttribute; 257 [LegacyInterfaceTypeChecking] attribute TestInterface? legacyInterfaceTypeCh eckingTestInterfaceOrNullAttribute;
258 [Reflect, URL] attribute DOMString urlStringAttribute; 258 [Reflect, URL] attribute DOMString urlStringAttribute;
259 [Reflect=reflectUrlAttribute, URL] attribute DOMString urlStringAttribute; 259 [Reflect=reflectUrlAttribute, URL] attribute DOMString urlStringAttribute;
260 [Unforgeable] attribute long unforgeableLongAttribute; 260 [Unforgeable] attribute long unforgeableLongAttribute;
261 [Measure] attribute long measuredLongAttribute; 261 [Measure] attribute long measuredLongAttribute;
262 [SameObject] readonly attribute TestInterface sameObjectAttribute; 262 [SameObject] readonly attribute TestInterface sameObjectAttribute;
263 [SameObject, SaveSameObject] readonly attribute TestInterface saveSameObject Attribute; 263 [SameObject, SaveSameObject] readonly attribute TestInterface saveSameObject Attribute;
264 [Unscopeable] attribute long unscopeableLongAttribute; 264 [Unscopable] attribute long unscopableLongAttribute;
265 [Unscopeable, OriginTrialEnabled=FeatureName] attribute long unscopeableOrig inTrialEnabledLongAttribute; 265 [Unscopable, OriginTrialEnabled=FeatureName] attribute long unscopableOrigin TrialEnabledLongAttribute;
266 [Unscopeable, RuntimeEnabled=FeatureName] attribute long unscopeableRuntimeE nabledLongAttribute; 266 [Unscopable, RuntimeEnabled=FeatureName] attribute long unscopableRuntimeEna bledLongAttribute;
267 [Unscopeable] void unscopeableVoidMethod(); 267 [Unscopable] void unscopableVoidMethod();
268 [Unscopeable, RuntimeEnabled=FeatureName] void unscopeableRuntimeEnabledVoid Method(); 268 [Unscopable, RuntimeEnabled=FeatureName] void unscopableRuntimeEnabledVoidMe thod();
269 269
270 270
271 // Methods 271 // Methods
272 // 272 //
273 // Naming convention: 273 // Naming convention:
274 // ReturnType returnTypeMethodTypeName1ArgTypeName2Arg(Type1 typeName1Arg, T ype2 typeName2Arg); 274 // ReturnType returnTypeMethodTypeName1ArgTypeName2Arg(Type1 typeName1Arg, T ype2 typeName2Arg);
275 // E.g., 275 // E.g.,
276 // void voidMethodStringArgLongArrayArg(DOMString stringArg, long[] longArra yArg); 276 // void voidMethodStringArgLongArrayArg(DOMString stringArg, long[] longArra yArg);
277 void voidMethod(); 277 void voidMethod();
278 static void staticVoidMethod(); 278 static void staticVoidMethod();
(...skipping 331 matching lines...) Expand 10 before | Expand all | Expand 10 after
610 [ImplementedInPrivateScript] attribute DOMString stringAttribute; 610 [ImplementedInPrivateScript] attribute DOMString stringAttribute;
611 [ImplementedInPrivateScript] attribute Node nodeAttribute; 611 [ImplementedInPrivateScript] attribute Node nodeAttribute;
612 [OnlyExposedToPrivateScript] short methodImplementedInCPPForPrivateScriptOnl y(short value1, short value2); 612 [OnlyExposedToPrivateScript] short methodImplementedInCPPForPrivateScriptOnl y(short value1, short value2);
613 [OnlyExposedToPrivateScript] attribute DOMString attributeImplementedInCPPFo rPrivateScriptOnly; 613 [OnlyExposedToPrivateScript] attribute DOMString attributeImplementedInCPPFo rPrivateScriptOnly;
614 [ImplementedInPrivateScript, OnlyExposedToPrivateScript] short methodForPriv ateScriptOnly(short value1, short value2); 614 [ImplementedInPrivateScript, OnlyExposedToPrivateScript] short methodForPriv ateScriptOnly(short value1, short value2);
615 [ImplementedInPrivateScript, OnlyExposedToPrivateScript] attribute DOMString attributeForPrivateScriptOnly; 615 [ImplementedInPrivateScript, OnlyExposedToPrivateScript] attribute DOMString attributeForPrivateScriptOnly;
616 [ImplementedInPrivateScript] attribute TestEnum enumForPrivateScript; 616 [ImplementedInPrivateScript] attribute TestEnum enumForPrivateScript;
617 617
618 maplike<long, DOMStringOrDouble>; 618 maplike<long, DOMStringOrDouble>;
619 }; 619 };
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698