summaryrefslogtreecommitdiff
path: root/chromium/third_party/WebKit/Source/core/storage/Storage.idl
diff options
context:
space:
mode:
Diffstat (limited to 'chromium/third_party/WebKit/Source/core/storage/Storage.idl')
-rw-r--r--chromium/third_party/WebKit/Source/core/storage/Storage.idl10
1 files changed, 5 insertions, 5 deletions
diff --git a/chromium/third_party/WebKit/Source/core/storage/Storage.idl b/chromium/third_party/WebKit/Source/core/storage/Storage.idl
index e3b5c705c3d..90309fe7ccd 100644
--- a/chromium/third_party/WebKit/Source/core/storage/Storage.idl
+++ b/chromium/third_party/WebKit/Source/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, ActivityLog=AccessForIsolatedWorlds, RaisesException] DOMString getItem(DOMString key);
- [NotEnumerable, RaisesException, PerWorldBindings, ActivityLog=AccessForIsolatedWorlds] void setItem(DOMString key, DOMString data);
- [NotEnumerable, RaisesException, PerWorldBindings, ActivityLog=AccessForIsolatedWorlds] void removeItem(DOMString key);
- [NotEnumerable, RaisesException, PerWorldBindings, ActivityLog=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();
};