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

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: 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 18e1af83386dff5783ecc8489732923304517599..06ba5f35a9c30912f70c96ceff40813e4d4e29da 100644
--- a/Source/core/storage/Storage.h
+++ b/Source/core/storage/Storage.h
@@ -55,7 +55,8 @@ namespace WebCore {
String anonymousIndexedGetter(unsigned, ExceptionCode&);
String anonymousNamedGetter(const AtomicString&, ExceptionCode&);
- bool anonymousNamedSetter(const AtomicString& name, const AtomicString& value, ExceptionCode&);
+ bool anonymousNamedSetter(const AtomicString& name, const AtomicString& value, bool isValueNull, bool isValueUndefined, ExceptionCode&);
+ bool anonymousIndexedSetter(unsigned, const AtomicString&, bool isValueNull, bool isValueUndefined, ExceptionCode&);
private:
Storage(Frame*, PassRefPtr<StorageArea>);

Powered by Google App Engine
This is Rietveld 408576698