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

Unified Diff: Source/core/storage/Storage.idl

Issue 330293002: Removing unnecessary PerWorldBindings for DOM API calls that are monitored by Activity Logger. (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: rebase Created 6 years, 6 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/HTMLVideoElement.idl ('k') | Source/modules/geolocation/Geolocation.idl » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: Source/core/storage/Storage.idl
diff --git a/Source/core/storage/Storage.idl b/Source/core/storage/Storage.idl
index faaf55f8a80894e6dbc61c8f729076bd8d9f8f17..288703d2316cb9a43dcdb02e0a35e62215273c4d 100644
--- a/Source/core/storage/Storage.idl
+++ b/Source/core/storage/Storage.idl
@@ -36,8 +36,8 @@
[NotEnumerable, RaisesException=Getter] readonly attribute unsigned long length;
[NotEnumerable, RaisesException, TreatReturnedNullStringAs=Null] DOMString key(unsigned long index);
- [LogActivity, NotEnumerable, PerWorldBindings, RaisesException, TreatReturnedNullStringAs=Null] DOMString getItem(DOMString key);
- [LogActivity, NotEnumerable, RaisesException, PerWorldBindings] void setItem(DOMString key, DOMString data);
- [LogActivity, NotEnumerable, PerWorldBindings, RaisesException] void removeItem(DOMString key);
- [LogActivity, NotEnumerable, PerWorldBindings, RaisesException] void clear();
+ [LogActivity, NotEnumerable, RaisesException, TreatReturnedNullStringAs=Null] DOMString getItem(DOMString key);
+ [LogActivity, NotEnumerable, RaisesException] void setItem(DOMString key, DOMString data);
+ [LogActivity, NotEnumerable, RaisesException] void removeItem(DOMString key);
+ [LogActivity, NotEnumerable, RaisesException] void clear();
};
« no previous file with comments | « Source/core/html/HTMLVideoElement.idl ('k') | Source/modules/geolocation/Geolocation.idl » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698