OLD | NEW |
1 /* | 1 /* |
2 * Copyright (C) 2009 Google Inc. All rights reserved. | 2 * Copyright (C) 2009 Google Inc. All rights reserved. |
3 * Copyright (C) 2010 Apple Inc. All rights reserved. | 3 * Copyright (C) 2010 Apple Inc. All rights reserved. |
4 * | 4 * |
5 * Redistribution and use in source and binary formstrArg, with or without | 5 * Redistribution and use in source and binary formstrArg, with or without |
6 * modification, are permitted provided that the following conditions | 6 * modification, are permitted provided that the following conditions |
7 * are met: | 7 * are met: |
8 * | 8 * |
9 * 1. Redistributions of source code must retain the above copyright | 9 * 1. Redistributions of source code must retain the above copyright |
10 * notice, this list of conditions and the following disclaimer. | 10 * notice, this list of conditions and the following disclaimer. |
(...skipping 255 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
266 | 266 |
267 attribute long? nullableLongSettableAttribute; | 267 attribute long? nullableLongSettableAttribute; |
268 | 268 |
269 [GetterRaisesException] attribute long? nullableStringValue; | 269 [GetterRaisesException] attribute long? nullableStringValue; |
270 | 270 |
271 [PerWorldBindings] readonly attribute TestObj perWorldReadOnlyAttribute; | 271 [PerWorldBindings] readonly attribute TestObj perWorldReadOnlyAttribute; |
272 [PerWorldBindings] attribute TestObj perWorldAttribute; | 272 [PerWorldBindings] attribute TestObj perWorldAttribute; |
273 [PerWorldBindings] void perWorldMethod(); | 273 [PerWorldBindings] void perWorldMethod(); |
274 [PerWorldBindings] void overloadedPerWorldMethod(long longArg); | 274 [PerWorldBindings] void overloadedPerWorldMethod(long longArg); |
275 [PerWorldBindings] void overloadedPerWorldMethod(DOMString strArg, long long
Arg); | 275 [PerWorldBindings] void overloadedPerWorldMethod(DOMString strArg, long long
Arg); |
| 276 |
| 277 [ActivityLog=Access] void activityLoggedMethod1(long longArg); |
| 278 [PerWorldBindings, ActivityLog=Access] void activityLoggedMethod2(long longA
rg); |
| 279 [PerWorldBindings, ActivityLog=AccessForIsolatedWorlds] void activityLoggedI
nIsolatedWorldMethod(long longArg); |
| 280 [PerWorldBindings, ActivityLog=Access] void overloadedActivityLoggedMethod(l
ong longArg); |
| 281 [PerWorldBindings, ActivityLog=Access] void overloadedActivityLoggedMethod(D
OMString strArg, long longArg); |
| 282 [ActivityLog=Access] attribute long activityLoggedAttr1; |
| 283 [PerWorldBindings, ActivityLog=Access] attribute long activityLoggedAttr2; |
| 284 [PerWorldBindings, ActivityLog=AccessForIsolatedWorlds] attribute long activ
ityLoggedInIsolatedWorldsAttr; |
| 285 [ActivityLog=Setter] attribute long activityLoggedAttrSetter1; |
| 286 [PerWorldBindings, ActivityLog=Setter] attribute long activityLoggedAttrSett
er2; |
| 287 [PerWorldBindings, ActivityLog=SetterForIsolatedWorlds] attribute long activ
ityLoggedInIsolatedWorldsAttrSetter; |
| 288 [ActivityLog=Getter] attribute long activityLoggedAttrGetter1; |
| 289 [PerWorldBindings, ActivityLog=Getter] attribute long activityLoggedAttrGett
er2; |
| 290 [PerWorldBindings, ActivityLog=GetterForIsolatedWorlds] attribute long activ
ityLoggedInIsolatedWorldsAttrGetter; |
276 }; | 291 }; |
OLD | NEW |