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

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

Issue 15899009: Support indexed setter generation (Closed) Base URL: https://chromium.googlesource.com/chromium/blink@master
Patch Set: rebased Created 7 years, 7 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/storage/Storage.cpp ('k') | no next file » | 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 298ae1fdfaa8776e2b75c9a9022987da357228b9..6d351ffa234583d06550ffecacb99d62f4b601d9 100644
--- a/Source/core/storage/Storage.idl
+++ b/Source/core/storage/Storage.idl
@@ -27,8 +27,8 @@
CustomEnumerateProperty,
] interface Storage {
[RaisesException, ImplementedAs=anonymousIndexedGetter] getter DOMString(unsigned long index);
+ [RaisesException, ImplementedAs=anonymousIndexedSetter] setter DOMString (unsigned long index, DOMString value);
[ImplementedAs=anonymousIndexedDeleter, RaisesException] deleter boolean (unsigned long index);
- [Custom] setter boolean (unsigned long index, DOMString value);
[RaisesException, ImplementedAs=anonymousNamedGetter] getter DOMString(DOMString name);
[RaisesException, ImplementedAs=anonymousNamedSetter] setter DOMString(DOMString name, DOMString value);
[ImplementedAs=anonymousNamedDeleter, RaisesException] deleter boolean (DOMString name);
« no previous file with comments | « Source/core/storage/Storage.cpp ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698