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>); |