| 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 7d7cf95373634f15ae4cc5c506f9f8e1700c18f5..a04823895d661e43e286ce1f412fb5810455706a 100644
|
| --- a/chrome/browser/net/sqlite_persistent_cookie_store.h
|
| +++ b/chrome/browser/net/sqlite_persistent_cookie_store.h
|
| @@ -19,14 +19,20 @@
|
| class FilePath;
|
| class Task;
|
|
|
| +namespace quota {
|
| +class SpecialStoragePolicy;
|
| +} // namespace quota
|
| +
|
| // Implements the PersistentCookieStore interface in terms of a SQLite database.
|
| // For documentation about the actual member functions consult the documentation
|
| // of the parent class |net::CookieMonster::PersistentCookieStore|.
|
| class SQLitePersistentCookieStore
|
| : public net::CookieMonster::PersistentCookieStore {
|
| public:
|
| - SQLitePersistentCookieStore(const FilePath& path,
|
| - bool restore_old_session_cookies);
|
| + SQLitePersistentCookieStore(
|
| + const FilePath& path,
|
| + bool restore_old_session_cookies,
|
| + quota::SpecialStoragePolicy* special_storage_policy);
|
|
|
| // net::CookieMonster::PersistentCookieStore:
|
| virtual void Load(const LoadedCallback& loaded_callback) OVERRIDE;
|
|
|