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

Unified Diff: Source/core/page/DOMWindow.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/core/html/HTMLDocument.idl ('k') | Source/core/page/Location.idl » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: Source/core/page/DOMWindow.idl
diff --git a/Source/core/page/DOMWindow.idl b/Source/core/page/DOMWindow.idl
index 9338c5cda390017f826f2b10df734406784fd354..d9161fcdf1ddceff0a4e8a6c489edf11b86450bf 100644
--- a/Source/core/page/DOMWindow.idl
+++ b/Source/core/page/DOMWindow.idl
@@ -44,7 +44,7 @@
[Replaceable] readonly attribute BarInfo scrollbars;
[Replaceable] readonly attribute BarInfo statusbar;
[Replaceable] readonly attribute BarInfo toolbar;
- [Replaceable] readonly attribute Navigator navigator;
+ [Replaceable, PerWorldBindings, ActivityLog=GetterForIsolatedWorlds] readonly attribute Navigator navigator;
[Replaceable] readonly attribute Navigator clientInformation;
readonly attribute Crypto crypto;
[DoNotCheckSecurity, CustomSetter, Unforgeable] attribute Location location;
@@ -149,10 +149,10 @@
DOMPoint webkitConvertPointFromNodeToPage([Default=Undefined] optional Node node,
[Default=Undefined] optional DOMPoint p);
- [EnabledAtRuntime] readonly attribute DOMApplicationCache applicationCache;
+ [EnabledAtRuntime, PerWorldBindings, ActivityLog=GetterForIsolatedWorlds] readonly attribute DOMApplicationCache applicationCache;
- [EnabledAtRuntime, GetterRaisesException] readonly attribute Storage sessionStorage;
- [EnabledAtRuntime, GetterRaisesException] readonly attribute Storage localStorage;
+ [EnabledAtRuntime, PerWorldBindings, ActivityLog=GetterForIsolatedWorlds, GetterRaisesException] readonly attribute Storage sessionStorage;
+ [EnabledAtRuntime, PerWorldBindings, ActivityLog=GetterForIsolatedWorlds, GetterRaisesException] readonly attribute Storage localStorage;
#if defined(ENABLE_ORIENTATION_EVENTS) && ENABLE_ORIENTATION_EVENTS
// This is the interface orientation in degrees. Some examples are:
« no previous file with comments | « Source/core/html/HTMLDocument.idl ('k') | Source/core/page/Location.idl » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698