Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(1767)

Unified Diff: chrome/browser/net/sqlite_persistent_cookie_store.h

Issue 10785017: Move CanonicalCookie into separate files (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Added missing include Created 8 years, 5 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
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 649fe3bf4db2bd3ff5c5253d482bdd77d8bf6ade..72675da44e003ac547db805dbd98119b356eef26 100644
--- a/chrome/browser/net/sqlite_persistent_cookie_store.h
+++ b/chrome/browser/net/sqlite_persistent_cookie_store.h
@@ -19,6 +19,10 @@ class ClearOnExitPolicy;
class FilePath;
class Task;
+namespace net {
+class CanonicalCookie;
+}
+
// 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|.
@@ -38,12 +42,9 @@ class SQLitePersistentCookieStore
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 AddCookie(const net::CanonicalCookie& cc) OVERRIDE;
+ virtual void UpdateCookieAccessTime(const net::CanonicalCookie& cc) OVERRIDE;
+ virtual void DeleteCookie(const net::CanonicalCookie& cc) OVERRIDE;
virtual void SetForceKeepSessionState() OVERRIDE;
virtual void Flush(const base::Closure& callback) OVERRIDE;

Powered by Google App Engine
This is Rietveld 408576698