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

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

Issue 106853005: Implement platform deleters per spec. (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: Switch to DeleteResult enum + extend scheme to indexed deleters Created 7 years 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 34e131712c6c9d90346053688f8b747eb9336e94..05da1cfe6be1dc2b12a7f2545c406584a7743b47 100644
--- a/Source/core/storage/Storage.h
+++ b/Source/core/storage/Storage.h
@@ -27,6 +27,7 @@
#define Storage_h
#include "bindings/v8/ScriptWrappable.h"
+#include "bindings/v8/V8Binding.h"
#include "core/frame/DOMWindowProperty.h"
#include "core/storage/StorageArea.h"
#include "wtf/Forward.h"
@@ -57,8 +58,8 @@ public:
String anonymousNamedGetter(const AtomicString&, ExceptionState&);
bool anonymousNamedSetter(const AtomicString& name, const AtomicString& value, ExceptionState&);
bool anonymousIndexedSetter(unsigned, const AtomicString&, ExceptionState&);
- bool anonymousNamedDeleter(const AtomicString&, ExceptionState&);
- bool anonymousIndexedDeleter(unsigned, ExceptionState&);
+ DeleteResult anonymousNamedDeleter(const AtomicString&, ExceptionState&);
+ DeleteResult anonymousIndexedDeleter(unsigned, ExceptionState&);
void namedPropertyEnumerator(Vector<String>&, ExceptionState&);
bool namedPropertyQuery(const AtomicString&, ExceptionState&);

Powered by Google App Engine
This is Rietveld 408576698