Index: chrome/browser/net/sqlite_persistent_cookie_store.h |
=================================================================== |
--- chrome/browser/net/sqlite_persistent_cookie_store.h (revision 105639) |
+++ chrome/browser/net/sqlite_persistent_cookie_store.h (working copy) |
@@ -11,12 +11,10 @@ |
#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 |
@@ -27,11 +25,8 @@ |
explicit SQLitePersistentCookieStore(const FilePath& path); |
virtual ~SQLitePersistentCookieStore(); |
- virtual void Load(const LoadedCallback& loaded_callback) OVERRIDE; |
+ virtual bool 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; |