Index: chrome/browser/net/sqlite_persistent_cookie_store.h |
=================================================================== |
--- chrome/browser/net/sqlite_persistent_cookie_store.h (revision 105637) |
+++ chrome/browser/net/sqlite_persistent_cookie_store.h (working copy) |
@@ -11,10 +11,12 @@ |
#include <string> |
#include <vector> |
+#include "base/compiler_specific.h" |
#include "base/memory/ref_counted.h" |
#include "net/base/cookie_monster.h" |
class FilePath; |
+class Task; |
// Implements the PersistentCookieStore interface in terms of a SQLite database. |
// For documentation about the actual member functions consult the documentation |
@@ -25,8 +27,11 @@ |
explicit SQLitePersistentCookieStore(const FilePath& path); |
virtual ~SQLitePersistentCookieStore(); |
- virtual bool Load(const LoadedCallback& loaded_callback) OVERRIDE; |
+ virtual void Load(const LoadedCallback& loaded_callback) OVERRIDE; |
+ virtual void LoadCookiesForKey(const std::string& key, |
+ const LoadedCallback& callback) OVERRIDE; |
+ |
virtual void AddCookie( |
const net::CookieMonster::CanonicalCookie& cc) OVERRIDE; |