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

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: Revised 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=CONDITION_1&CONDITION_2] attribute long conditionalAndLongAttri bute; 111 [Conditional=CONDITION_1&CONDITION_2] attribute long conditionalAndLongAttri bute;
112 [Conditional=CONDITION_1|CONDITION_2] attribute long conditionalOrLongAttrib ute; 112 [Conditional=CONDITION_1|CONDITION_2] attribute long conditionalOrLongAttrib ute;
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=Setter] attribute long doNotCheckSecurityOnSetterLongAtt ribute;
124 [EnforceRange] attribute long enforceRangeLongAttribute; 120 [EnforceRange] attribute long enforceRangeLongAttribute;
125 [ExposeJSAccessors] attribute long exposeJSAccessorsLongAttribute; 121 [ExposeJSAccessors] attribute long exposeJSAccessorsLongAttribute;
126 [RaisesException=Getter] attribute long getterRaisesExceptionLongAttribute; 122 [RaisesException=Getter] attribute long getterRaisesExceptionLongAttribute;
127 [ImplementedAs=implementedAsName] attribute long implementedAsLongAttribute; 123 [ImplementedAs=implementedAsName] attribute long implementedAsLongAttribute;
128 [Custom, ImplementedAs=implementedAsNameWithCustom] attribute long customImp lementedAsLongAttribute; 124 [Custom, ImplementedAs=implementedAsNameWithCustom] attribute long customImp lementedAsLongAttribute;
129 [Custom=Getter, ImplementedAs=implementedAsNameWithCustomGetter] attribute l ong customGetterImplementedAsLongAttribute; 125 [Custom=Getter, ImplementedAs=implementedAsNameWithCustomGetter] attribute l ong customGetterImplementedAsLongAttribute;
130 [Custom=Setter, ImplementedAs=implementedAsNameWithCustomGetter] attribute l ong customSetterImplementedAsLongAttribute; 126 [Custom=Setter, ImplementedAs=implementedAsNameWithCustomGetter] attribute l ong customSetterImplementedAsLongAttribute;
131 [MeasureAs=TestFeature] attribute long measureAsLongAttribute; 127 [MeasureAs=TestFeature] attribute long measureAsLongAttribute;
132 [NotEnumerable] attribute long notEnumerableLongAttribute; 128 [NotEnumerable] attribute long notEnumerableLongAttribute;
133 [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
360 [RaisesException] void raisesExceptionVoidMethodOptionalLongArg(optional lon g optionalLongArg); 356 [RaisesException] void raisesExceptionVoidMethodOptionalLongArg(optional lon g optionalLongArg);
361 [ReadOnly] void readOnlyVoidMethod(); 357 [ReadOnly] void readOnlyVoidMethod();
362 [NotEnumerable, ReadOnly] void notEnumerableReadOnlyVoidMethod(); 358 [NotEnumerable, ReadOnly] void notEnumerableReadOnlyVoidMethod();
363 [RuntimeEnabled=FeatureName] void runtimeEnabledVoidMethod(); 359 [RuntimeEnabled=FeatureName] void runtimeEnabledVoidMethod();
364 [PerWorldBindings, RuntimeEnabled=FeatureName] void perWorldBindingsRuntimeE nabledVoidMethod(); 360 [PerWorldBindings, RuntimeEnabled=FeatureName] void perWorldBindingsRuntimeE nabledVoidMethod();
365 [StrictTypeChecking] void strictTypeCheckingVoidMethodTestInterfaceEmptyArg( TestInterfaceEmpty testInterfaceEmptyArg); 361 [StrictTypeChecking] void strictTypeCheckingVoidMethodTestInterfaceEmptyArg( TestInterfaceEmpty testInterfaceEmptyArg);
366 [TreatReturnedNullStringAs=Null] DOMString treatReturnedNullStringAsNullStri ngMethod(); 362 [TreatReturnedNullStringAs=Null] DOMString treatReturnedNullStringAsNullStri ngMethod();
367 [TreatReturnedNullStringAs=Undefined] DOMString treatReturnedNullStringAsUnd efinedStringMethod(); 363 [TreatReturnedNullStringAs=Undefined] DOMString treatReturnedNullStringAsUnd efinedStringMethod();
368 [Unforgeable] void unforgeableVoidMethod(); 364 [Unforgeable] void unforgeableVoidMethod();
369 }; 365 };
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698