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

Unified Diff: Source/WebCore/page/Location.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 two superfluous in attributes in the IDL. 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
Index: Source/WebCore/page/Location.idl
diff --git a/Source/WebCore/page/Location.idl b/Source/WebCore/page/Location.idl
index 746ecb577bfc02d56833c410459b877cecef9a0e..13d164e13952470b62b97646725c06e08f60ad21 100644
--- a/Source/WebCore/page/Location.idl
+++ b/Source/WebCore/page/Location.idl
@@ -34,8 +34,8 @@
] interface Location {
[DoNotCheckSecurityOnSetter, CustomSetter, Unforgeable] attribute DOMString href;
- [Custom, Unforgeable] void assign([Optional=DefaultIsUndefined] DOMString url);
- [Custom, Unforgeable] void replace([Optional=DefaultIsUndefined] DOMString url);
+ [Custom, Unforgeable, PerWorldBindings, ActivityLog=AccessForIsolatedWorlds] void assign([Optional=DefaultIsUndefined] DOMString url);
+ [Custom, Unforgeable, PerWorldBindings, ActivityLog=AccessForIsolatedWorlds] void replace([Optional=DefaultIsUndefined] DOMString url);
[Custom, Unforgeable] void reload();
// URI decomposition attributes

Powered by Google App Engine
This is Rietveld 408576698