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

Unified Diff: Source/bindings/tests/idls/TestObj.idl

Issue 13799007: Support for selective DOM activity logging, based on IDL attributes. (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: Removed bindings tests output, temporarily, to work around diff difficulty. Created 7 years, 8 months 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 side-by-side diff with in-line comments
Download patch
« no previous file with comments | « Source/bindings/scripts/IDLAttributes.txt ('k') | Source/bindings/v8/V8Binding.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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;
};
« no previous file with comments | « Source/bindings/scripts/IDLAttributes.txt ('k') | Source/bindings/v8/V8Binding.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698