OLD | NEW |
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 111 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
122 [DoNotCheckSecurity] attribute long doNotCheckSecurityLongAttribute; | 122 [DoNotCheckSecurity] attribute long doNotCheckSecurityLongAttribute; |
123 [DoNotCheckSecurity] readonly attribute long doNotCheckSecurityReadonlyLongA
ttribute; // Separate read only attribute to check attribute configuration | 123 [DoNotCheckSecurity] readonly attribute long doNotCheckSecurityReadonlyLongA
ttribute; // Separate read only attribute to check attribute configuration |
124 [DoNotCheckSecurityOnGetter] attribute long doNotCheckSecurityOnGetterLongAt
tribute; | 124 [DoNotCheckSecurityOnGetter] attribute long doNotCheckSecurityOnGetterLongAt
tribute; |
125 [DoNotCheckSecurityOnSetter] attribute long doNotCheckSecurityOnSetterLongAt
tribute; | 125 [DoNotCheckSecurityOnSetter] attribute long doNotCheckSecurityOnSetterLongAt
tribute; |
126 [EnforceRange] attribute long enforceRangeLongAttribute; | 126 [EnforceRange] attribute long enforceRangeLongAttribute; |
127 [GetterRaisesException] attribute long getterRaisesExceptionLongAttribute; | 127 [GetterRaisesException] attribute long getterRaisesExceptionLongAttribute; |
128 [ImplementedAs=implementedAsName] attribute long implementedAsLongAttribute; | 128 [ImplementedAs=implementedAsName] attribute long implementedAsLongAttribute; |
129 [Custom, ImplementedAs=implementedAsNameWithCustom] attribute long customImp
lementedAsLongAttribute; | 129 [Custom, ImplementedAs=implementedAsNameWithCustom] attribute long customImp
lementedAsLongAttribute; |
130 [CustomGetter, ImplementedAs=implementedAsNameWithCustomGetter] attribute lo
ng customGetterImplementedAsLongAttribute; | 130 [CustomGetter, ImplementedAs=implementedAsNameWithCustomGetter] attribute lo
ng customGetterImplementedAsLongAttribute; |
131 [CustomSetter, ImplementedAs=implementedAsNameWithCustomGetter] attribute lo
ng customSetterImplementedAsLongAttribute; | 131 [CustomSetter, ImplementedAs=implementedAsNameWithCustomGetter] attribute lo
ng customSetterImplementedAsLongAttribute; |
132 [KeepAttributeAliveForGC] attribute DocumentFragment documentFragmentAttribu
te; | |
133 [MeasureAs=TestFeature] attribute long measureAsLongAttribute; | 132 [MeasureAs=TestFeature] attribute long measureAsLongAttribute; |
134 [NotEnumerable] attribute long notEnumerableLongAttribute; | 133 [NotEnumerable] attribute long notEnumerableLongAttribute; |
135 [PerContextEnabled=FeatureName] attribute long perContextEnabledLongAttribut
e; | 134 [PerContextEnabled=FeatureName] attribute long perContextEnabledLongAttribut
e; |
136 [PerWorldBindings] attribute long perWorldBindingsLongAttribute; | 135 [PerWorldBindings] attribute long perWorldBindingsLongAttribute; |
137 [PerWorldBindings] readonly attribute long perWorldBindingsReadonlyLongAttri
bute; // Separate read only attribute to check attribute configuration | 136 [PerWorldBindings] readonly attribute long perWorldBindingsReadonlyLongAttri
bute; // Separate read only attribute to check attribute configuration |
138 [ActivityLogging=AccessForAllWorlds, PerWorldBindings] attribute long activi
tyLoggingAccessPerWorldBindingsLongAttribute; | 137 [ActivityLogging=AccessForAllWorlds, PerWorldBindings] attribute long activi
tyLoggingAccessPerWorldBindingsLongAttribute; |
139 [ActivityLogging=AccessForIsolatedWorlds, PerWorldBindings] attribute long a
ctivityLoggingAccessForIsolatedWorldsPerWorldBindingsLongAttribute; | 138 [ActivityLogging=AccessForIsolatedWorlds, PerWorldBindings] attribute long a
ctivityLoggingAccessForIsolatedWorldsPerWorldBindingsLongAttribute; |
140 [ActivityLogging=GetterForAllWorlds, PerWorldBindings] attribute long activi
tyLoggingGetterPerWorldBindingsLongAttribute; | 139 [ActivityLogging=GetterForAllWorlds, PerWorldBindings] attribute long activi
tyLoggingGetterPerWorldBindingsLongAttribute; |
141 [ActivityLogging=GetterForIsolatedWorlds, PerWorldBindings] attribute long a
ctivityLoggingGetterForIsolatedWorldsPerWorldBindingsLongAttribute; | 140 [ActivityLogging=GetterForIsolatedWorlds, PerWorldBindings] attribute long a
ctivityLoggingGetterForIsolatedWorldsPerWorldBindingsLongAttribute; |
142 [RaisesException] attribute long raisesExceptionLongAttribute; | 141 [RaisesException] attribute long raisesExceptionLongAttribute; |
(...skipping 84 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
227 void voidMethodLongArgOptionalLongArg(long longArg, optional long optionalLo
ngArg); | 226 void voidMethodLongArgOptionalLongArg(long longArg, optional long optionalLo
ngArg); |
228 void voidMethodLongArgOptionalLongArgOptionalLongArg(long longArg, optional
long optionalLongArg1, optional long optionalLongArg2); | 227 void voidMethodLongArgOptionalLongArgOptionalLongArg(long longArg, optional
long optionalLongArg1, optional long optionalLongArg2); |
229 void voidMethodLongArgOptionalTestInterfaceEmptyArg(long longArg, optional T
estInterfaceEmpty optionalTestInterfaceEmpty); | 228 void voidMethodLongArgOptionalTestInterfaceEmptyArg(long longArg, optional T
estInterfaceEmpty optionalTestInterfaceEmpty); |
230 void voidMethodTestInterfaceEmptyArgOptionalLongArg(TestInterfaceEmpty optio
nalTestInterfaceEmpty, optional long longArg); | 229 void voidMethodTestInterfaceEmptyArgOptionalLongArg(TestInterfaceEmpty optio
nalTestInterfaceEmpty, optional long longArg); |
231 // Variadic operations | 230 // Variadic operations |
232 void voidMethodVariadicStringArg(DOMString... variadicStringArgs); | 231 void voidMethodVariadicStringArg(DOMString... variadicStringArgs); |
233 void voidMethodStringArgVariadicStringArg(DOMString stringArg, DOMString...
variadicStringArgs); | 232 void voidMethodStringArgVariadicStringArg(DOMString stringArg, DOMString...
variadicStringArgs); |
234 void voidMethodVariadicTestInterfaceEmptyArg(TestInterfaceEmpty... variadicT
estInterfaceEmptyArgs); | 233 void voidMethodVariadicTestInterfaceEmptyArg(TestInterfaceEmpty... variadicT
estInterfaceEmptyArgs); |
235 void voidMethodTestInterfaceEmptyArgVariadicTestInterfaceEmptyArg(TestInterf
aceEmpty testInterfaceEmptyArg, TestInterfaceEmpty... variadicTestInterfaceEmpty
Args); | 234 void voidMethodTestInterfaceEmptyArgVariadicTestInterfaceEmptyArg(TestInterf
aceEmpty testInterfaceEmptyArg, TestInterfaceEmpty... variadicTestInterfaceEmpty
Args); |
236 }; | 235 }; |
OLD | NEW |