| OLD | NEW |
| (Empty) |
| 1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. | |
| 2 // Use of this source code is governed by a BSD-style license that can be | |
| 3 // found in the LICENSE file. | |
| 4 | |
| 5 #ifndef WEBKIT_DOM_STORAGE_CACHED_AREA_H_ | |
| 6 #define WEBKIT_DOM_STORAGE_CACHED_AREA_H_ | |
| 7 | |
| 8 #include "base/bind.h" | |
| 9 #include "base/memory/ref_counted.h" | |
| 10 #include "base/nullable_string16.h" | |
| 11 #include "base/string16.h" | |
| 12 #include "googleurl/src/gurl.h" | |
| 13 #include "webkit/dom_storage/dom_storage_types.h" | |
| 14 | |
| 15 namespace dom_storage { | |
| 16 | |
| 17 // Abstract interface for cached area, renderer to browser communications. | |
| 18 class DomStorageProxy : public base::RefCounted<DomStorageProxy> { | |
| 19 public: | |
| 20 typedef base::Callback<void(bool)> CompletionCallback; | |
| 21 | |
| 22 virtual void LoadArea(int connection_id, ValuesMap* values, | |
| 23 const CompletionCallback& callback) = 0; | |
| 24 | |
| 25 virtual void SetItem(int connection_id, const base::string16& key, | |
| 26 const base::string16& value, const GURL& page_url, | |
| 27 const CompletionCallback& callback) = 0; | |
| 28 | |
| 29 virtual void RemoveItem(int connection_id, const base::string16& key, | |
| 30 const GURL& page_url, | |
| 31 const CompletionCallback& callback) = 0; | |
| 32 | |
| 33 virtual void ClearArea(int connection_id, | |
| 34 const GURL& page_url, | |
| 35 const CompletionCallback& callback) = 0; | |
| 36 protected: | |
| 37 friend class base::RefCounted<DomStorageProxy>; | |
| 38 virtual ~DomStorageProxy() {} | |
| 39 }; | |
| 40 | |
| 41 } // namespace dom_storage | |
| 42 | |
| 43 #endif // WEBKIT_DOM_STORAGE_DOM_STORAGE_AREA_H_ | |
| OLD | NEW |