| Index: chrome/browser/net/sqlite_persistent_cookie_store.h
|
| diff --git a/chrome/browser/net/sqlite_persistent_cookie_store.h b/chrome/browser/net/sqlite_persistent_cookie_store.h
|
| index 08ee08e10749ef63d95f1c54554c653843594295..7d7cf95373634f15ae4cc5c506f9f8e1700c18f5 100644
|
| --- a/chrome/browser/net/sqlite_persistent_cookie_store.h
|
| +++ b/chrome/browser/net/sqlite_persistent_cookie_store.h
|
| @@ -27,26 +27,23 @@ class SQLitePersistentCookieStore
|
| public:
|
| SQLitePersistentCookieStore(const FilePath& path,
|
| bool restore_old_session_cookies);
|
| - virtual ~SQLitePersistentCookieStore();
|
|
|
| + // net::CookieMonster::PersistentCookieStore:
|
| 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;
|
| -
|
| virtual void UpdateCookieAccessTime(
|
| const net::CookieMonster::CanonicalCookie& cc) OVERRIDE;
|
| -
|
| virtual void DeleteCookie(
|
| const net::CookieMonster::CanonicalCookie& cc) OVERRIDE;
|
| -
|
| virtual void SetClearLocalStateOnExit(bool clear_local_state) OVERRIDE;
|
| -
|
| virtual void Flush(const base::Closure& callback) OVERRIDE;
|
|
|
| + protected:
|
| + virtual ~SQLitePersistentCookieStore();
|
| +
|
| private:
|
| class Backend;
|
|
|
|
|