| Index: Source/bindings/tests/idls/TestObj.idl
|
| diff --git a/Source/bindings/tests/idls/TestObj.idl b/Source/bindings/tests/idls/TestObj.idl
|
| index 9a902d71f33a8bd5a4352125e4264394fd8b9974..d02e98e2386a7b5bb662fa1d72a6be8534e4df97 100644
|
| --- a/Source/bindings/tests/idls/TestObj.idl
|
| +++ b/Source/bindings/tests/idls/TestObj.idl
|
| @@ -273,4 +273,19 @@ enum TestEnumType { "", "EnumValue1", "EnumValue2", "EnumValue3" };
|
| [PerWorldBindings] void perWorldMethod();
|
| [PerWorldBindings] void overloadedPerWorldMethod(long longArg);
|
| [PerWorldBindings] void overloadedPerWorldMethod(DOMString strArg, long longArg);
|
| +
|
| + [ActivityLog=Access] void activityLoggedMethod1(long longArg);
|
| + [PerWorldBindings, ActivityLog=Access] void activityLoggedMethod2(long longArg);
|
| + [PerWorldBindings, ActivityLog=AccessForIsolatedWorlds] void activityLoggedInIsolatedWorldMethod(long longArg);
|
| + [PerWorldBindings, ActivityLog=Access] void overloadedActivityLoggedMethod(long longArg);
|
| + [PerWorldBindings, ActivityLog=Access] void overloadedActivityLoggedMethod(DOMString strArg, long longArg);
|
| + [ActivityLog=Access] attribute long activityLoggedAttr1;
|
| + [PerWorldBindings, ActivityLog=Access] attribute long activityLoggedAttr2;
|
| + [PerWorldBindings, ActivityLog=AccessForIsolatedWorlds] attribute long activityLoggedInIsolatedWorldsAttr;
|
| + [ActivityLog=Setter] attribute long activityLoggedAttrSetter1;
|
| + [PerWorldBindings, ActivityLog=Setter] attribute long activityLoggedAttrSetter2;
|
| + [PerWorldBindings, ActivityLog=SetterForIsolatedWorlds] attribute long activityLoggedInIsolatedWorldsAttrSetter;
|
| + [ActivityLog=Getter] attribute long activityLoggedAttrGetter1;
|
| + [PerWorldBindings, ActivityLog=Getter] attribute long activityLoggedAttrGetter2;
|
| + [PerWorldBindings, ActivityLog=GetterForIsolatedWorlds] attribute long activityLoggedInIsolatedWorldsAttrGetter;
|
| };
|
|
|