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

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

Issue 15899009: Support indexed setter generation (Closed) Base URL: https://chromium.googlesource.com/chromium/blink@master
Patch Set: Use TreatNullAs, TreatUndefinedAs in case of value is null/undefined 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
Index: Source/core/storage/Storage.h
diff --git a/Source/core/storage/Storage.h b/Source/core/storage/Storage.h
index cdcb968ff6f75f076944395bd3b03b111c99b54e..c6ee5bc0e67bfbea6d7cfd237c9c533871b5b9dd 100644
--- a/Source/core/storage/Storage.h
+++ b/Source/core/storage/Storage.h
@@ -56,6 +56,7 @@ namespace WebCore {
String anonymousIndexedGetter(unsigned, ExceptionCode&);
String anonymousNamedGetter(const AtomicString&, ExceptionCode&);
bool anonymousNamedSetter(const AtomicString& name, const AtomicString& value, ExceptionCode&);
+ bool anonymousIndexedSetter(unsigned, const AtomicString&, ExceptionCode&);
bool anonymousNamedDeleter(const AtomicString&, ExceptionCode&);
bool anonymousIndexedDeleter(unsigned, ExceptionCode&);

Powered by Google App Engine
This is Rietveld 408576698