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

Unified Diff: core/storage/Storage.idl

Issue 155973006: Roll IDL to 1750 (Closed) Base URL: https://dart.googlecode.com/svn/third_party/WebCore
Patch Set: Created 6 years, 10 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 | « core/page/PagePopupController.idl ('k') | core/storage/StorageEvent.idl » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: core/storage/Storage.idl
diff --git a/core/storage/Storage.idl b/core/storage/Storage.idl
index 15cdf269189882ce77e4673ecd63ccbee3ac227b..90309fe7ccd8e4274cdb4225b7861a7d7b34a849 100644
--- a/core/storage/Storage.idl
+++ b/core/storage/Storage.idl
@@ -30,11 +30,11 @@ interface Storage {
[RaisesException, ImplementedAs=anonymousNamedGetter] getter DOMString(DOMString name);
[RaisesException, ImplementedAs=anonymousNamedSetter] setter DOMString(DOMString name, DOMString value);
[ImplementedAs=anonymousNamedDeleter, RaisesException] deleter boolean (DOMString name);
- [NotEnumerable, GetterRaisesException] readonly attribute unsigned long length;
+ [NotEnumerable, RaisesException=Getter] readonly attribute unsigned long length;
[NotEnumerable, TreatReturnedNullStringAs=Null, RaisesException] DOMString key(unsigned long index);
- [NotEnumerable, TreatReturnedNullStringAs=Null, PerWorldBindings, ActivityLogging=AccessForIsolatedWorlds, RaisesException] DOMString getItem(DOMString key);
- [NotEnumerable, RaisesException, PerWorldBindings, ActivityLogging=AccessForIsolatedWorlds] void setItem(DOMString key, DOMString data);
- [NotEnumerable, RaisesException, PerWorldBindings, ActivityLogging=AccessForIsolatedWorlds] void removeItem(DOMString key);
- [NotEnumerable, RaisesException, PerWorldBindings, ActivityLogging=AccessForIsolatedWorlds] void clear();
+ [NotEnumerable, TreatReturnedNullStringAs=Null, PerWorldBindings, ActivityLogging=ForIsolatedWorlds, RaisesException] DOMString getItem(DOMString key);
+ [NotEnumerable, RaisesException, PerWorldBindings, ActivityLogging=ForIsolatedWorlds] void setItem(DOMString key, DOMString data);
+ [NotEnumerable, RaisesException, PerWorldBindings, ActivityLogging=ForIsolatedWorlds] void removeItem(DOMString key);
+ [NotEnumerable, RaisesException, PerWorldBindings, ActivityLogging=ForIsolatedWorlds] void clear();
};
« no previous file with comments | « core/page/PagePopupController.idl ('k') | core/storage/StorageEvent.idl » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698