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

Unified Diff: Source/WebCore/storage/StorageArea.h

Issue 10377148: Revert 116712 - Source/WebCore: [chromium] DomStorage events handling needs TLC (2) (Closed) Base URL: http://svn.webkit.org/repository/webkit/branches/chromium/1137/
Patch Set: Created 8 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 | « no previous file | Source/WebCore/storage/StorageAreaImpl.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: Source/WebCore/storage/StorageArea.h
===================================================================
--- Source/WebCore/storage/StorageArea.h (revision 117067)
+++ Source/WebCore/storage/StorageArea.h (working copy)
@@ -49,9 +49,9 @@
virtual unsigned length(Frame* sourceFrame) const = 0;
virtual String key(unsigned index, Frame* sourceFrame) const = 0;
virtual String getItem(const String& key, Frame* sourceFrame) const = 0;
- virtual void setItem(const String& key, const String& value, ExceptionCode&, Frame* sourceFrame) = 0;
- virtual void removeItem(const String& key, Frame* sourceFrame) = 0;
- virtual void clear(Frame* sourceFrame) = 0;
+ virtual String setItem(const String& key, const String& value, ExceptionCode& ec, Frame* sourceFrame) = 0;
+ virtual String removeItem(const String& key, Frame* sourceFrame) = 0;
+ virtual bool clear(Frame* sourceFrame) = 0;
virtual bool contains(const String& key, Frame* sourceFrame) const = 0;
virtual bool disabledByPrivateBrowsingInFrame(const Frame* sourceFrame) const = 0;
« no previous file with comments | « no previous file | Source/WebCore/storage/StorageAreaImpl.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698