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

Side by Side Diff: Source/bindings/tests/idls/TestObjectPython.idl

Issue 77453002: IDL compiler: [CheckSecurity=Frame] interface + [DoNotCheckSecurity] members (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Other extended attribute combinations Created 7 years, 1 month 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 99 matching lines...) Expand 10 before | Expand all | Expand 10 after
110 [Conditional=Condition] attribute long conditionalLongAttribute; 110 [Conditional=Condition] attribute long conditionalLongAttribute;
111 [Conditional=Condition1&Condition2] attribute long conditionalAndLongAttribu te; 111 [Conditional=Condition1&Condition2] attribute long conditionalAndLongAttribu te;
112 [Conditional=Condition1|Condition2] attribute long conditionalOrLongAttribut e; 112 [Conditional=Condition1|Condition2] attribute long conditionalOrLongAttribut e;
113 [Custom] attribute object customObjectAttribute; 113 [Custom] attribute object customObjectAttribute;
114 [Custom=Getter] attribute long customGetterLongAttribute; 114 [Custom=Getter] attribute long customGetterLongAttribute;
115 [Custom=Getter] readonly attribute object customGetterReadonlyObjectAttribut e; 115 [Custom=Getter] readonly attribute object customGetterReadonlyObjectAttribut e;
116 [Custom=Setter] attribute long customSetterLongAttribute; 116 [Custom=Setter] attribute long customSetterLongAttribute;
117 [Conditional=Condition, Custom] attribute long customLongAttribute; 117 [Conditional=Condition, Custom] attribute long customLongAttribute;
118 [CustomElementCallbacks] readonly attribute long customElementsCallbacksRead onlyLongAttribute; 118 [CustomElementCallbacks] readonly attribute long customElementsCallbacksRead onlyLongAttribute;
119 [DeprecateAs=LongAttribute] attribute long deprecatedLongAttribute; 119 [DeprecateAs=LongAttribute] attribute long deprecatedLongAttribute;
120 // FIXME: move to TestCheckSecurityInterface when implement [CheckSecurity]
121 [DoNotCheckSecurity] attribute long doNotCheckSecurityLongAttribute;
122 [DoNotCheckSecurity] readonly attribute long doNotCheckSecurityReadonlyLongA ttribute; // Separate read only attribute to check attribute configuration
123 [DoNotCheckSecurity=Getter] attribute long doNotCheckSecurityOnGetterLongAtt ribute;
124 [DoNotCheckSecurity=Setter] attribute long doNotCheckSecurityOnSetterLongAtt ribute;
125 [EnforceRange] attribute long enforceRangeLongAttribute; 120 [EnforceRange] attribute long enforceRangeLongAttribute;
126 [ExposeJSAccessors] attribute long exposeJSAccessorsLongAttribute; 121 [ExposeJSAccessors] attribute long exposeJSAccessorsLongAttribute;
127 [RaisesException=Getter] attribute long getterRaisesExceptionLongAttribute; 122 [RaisesException=Getter] attribute long getterRaisesExceptionLongAttribute;
128 [ImplementedAs=implementedAsName] attribute long implementedAsLongAttribute; 123 [ImplementedAs=implementedAsName] attribute long implementedAsLongAttribute;
129 [Custom, ImplementedAs=implementedAsNameWithCustom] attribute long customImp lementedAsLongAttribute; 124 [Custom, ImplementedAs=implementedAsNameWithCustom] attribute long customImp lementedAsLongAttribute;
130 [Custom=Getter, ImplementedAs=implementedAsNameWithCustomGetter] attribute l ong customGetterImplementedAsLongAttribute; 125 [Custom=Getter, ImplementedAs=implementedAsNameWithCustomGetter] attribute l ong customGetterImplementedAsLongAttribute;
131 [Custom=Setter, ImplementedAs=implementedAsNameWithCustomGetter] attribute l ong customSetterImplementedAsLongAttribute; 126 [Custom=Setter, ImplementedAs=implementedAsNameWithCustomGetter] attribute l ong customSetterImplementedAsLongAttribute;
132 [MeasureAs=TestFeature] attribute long measureAsLongAttribute; 127 [MeasureAs=TestFeature] attribute long measureAsLongAttribute;
133 [NotEnumerable] attribute long notEnumerableLongAttribute; 128 [NotEnumerable] attribute long notEnumerableLongAttribute;
134 [PerContextEnabled=FeatureName] attribute long perContextEnabledLongAttribut e; 129 [PerContextEnabled=FeatureName] attribute long perContextEnabledLongAttribut e;
(...skipping 226 matching lines...) Expand 10 before | Expand all | Expand 10 after
361 [RaisesException] void raisesExceptionVoidMethodOptionalLongArg(optional lon g optionalLongArg); 356 [RaisesException] void raisesExceptionVoidMethodOptionalLongArg(optional lon g optionalLongArg);
362 [ReadOnly] void readOnlyVoidMethod(); 357 [ReadOnly] void readOnlyVoidMethod();
363 [NotEnumerable, ReadOnly] void notEnumerableReadOnlyVoidMethod(); 358 [NotEnumerable, ReadOnly] void notEnumerableReadOnlyVoidMethod();
364 [RuntimeEnabled=FeatureName] void runtimeEnabledVoidMethod(); 359 [RuntimeEnabled=FeatureName] void runtimeEnabledVoidMethod();
365 [PerWorldBindings, RuntimeEnabled=FeatureName] void perWorldBindingsRuntimeE nabledVoidMethod(); 360 [PerWorldBindings, RuntimeEnabled=FeatureName] void perWorldBindingsRuntimeE nabledVoidMethod();
366 [StrictTypeChecking] void strictTypeCheckingVoidMethodTestInterfaceEmptyArg( TestInterfaceEmpty testInterfaceEmptyArg); 361 [StrictTypeChecking] void strictTypeCheckingVoidMethodTestInterfaceEmptyArg( TestInterfaceEmpty testInterfaceEmptyArg);
367 [TreatReturnedNullStringAs=Null] DOMString treatReturnedNullStringAsNullStri ngMethod(); 362 [TreatReturnedNullStringAs=Null] DOMString treatReturnedNullStringAsNullStri ngMethod();
368 [TreatReturnedNullStringAs=Undefined] DOMString treatReturnedNullStringAsUnd efinedStringMethod(); 363 [TreatReturnedNullStringAs=Undefined] DOMString treatReturnedNullStringAsUnd efinedStringMethod();
369 [Unforgeable] void unforgeableVoidMethod(); 364 [Unforgeable] void unforgeableVoidMethod();
370 }; 365 };
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698