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

Side by Side Diff: content/browser/net/sqlite_persistent_cookie_store.h

Issue 98603012: Revert of Encrypt all stored cookies on selected operating systems. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 7 years 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 unified diff | Download patch | Annotate | Revision Log
OLDNEW
1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. 1 // Copyright (c) 2012 The Chromium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be 2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file. 3 // found in the LICENSE file.
4 4
5 // A sqlite implementation of a cookie monster persistent store. 5 // A sqlite implementation of a cookie monster persistent store.
6 6
7 #ifndef CONTENT_BROWSER_NET_SQLITE_PERSISTENT_COOKIE_STORE_H_ 7 #ifndef CONTENT_BROWSER_NET_SQLITE_PERSISTENT_COOKIE_STORE_H_
8 #define CONTENT_BROWSER_NET_SQLITE_PERSISTENT_COOKIE_STORE_H_ 8 #define CONTENT_BROWSER_NET_SQLITE_PERSISTENT_COOKIE_STORE_H_
9 9
10 #include <string> 10 #include <string>
(...skipping 14 matching lines...) Expand all
25 25
26 namespace net { 26 namespace net {
27 class CanonicalCookie; 27 class CanonicalCookie;
28 } 28 }
29 29
30 namespace quota { 30 namespace quota {
31 class SpecialStoragePolicy; 31 class SpecialStoragePolicy;
32 } 32 }
33 33
34 namespace content { 34 namespace content {
35 class CookieCryptoDelegate;
36 35
37 // Implements the PersistentCookieStore interface in terms of a SQLite database. 36 // Implements the PersistentCookieStore interface in terms of a SQLite database.
38 // For documentation about the actual member functions consult the documentation 37 // For documentation about the actual member functions consult the documentation
39 // of the parent class |net::CookieMonster::PersistentCookieStore|. 38 // of the parent class |net::CookieMonster::PersistentCookieStore|.
40 // If provided, a |SpecialStoragePolicy| is consulted when the SQLite database 39 // If provided, a |SpecialStoragePolicy| is consulted when the SQLite database
41 // is closed to decide which cookies to keep. 40 // is closed to decide which cookies to keep.
42 class CONTENT_EXPORT SQLitePersistentCookieStore 41 class CONTENT_EXPORT SQLitePersistentCookieStore
43 : public net::CookieMonster::PersistentCookieStore { 42 : public net::CookieMonster::PersistentCookieStore {
44 public: 43 public:
45 // All blocking database accesses will be performed on 44 // All blocking database accesses will be performed on
46 // |background_task_runner|, while |client_task_runner| is used to invoke 45 // |background_task_runner|, while |client_task_runner| is used to invoke
47 // callbacks. 46 // callbacks.
48 SQLitePersistentCookieStore( 47 SQLitePersistentCookieStore(
49 const base::FilePath& path, 48 const base::FilePath& path,
50 const scoped_refptr<base::SequencedTaskRunner>& client_task_runner, 49 const scoped_refptr<base::SequencedTaskRunner>& client_task_runner,
51 const scoped_refptr<base::SequencedTaskRunner>& background_task_runner, 50 const scoped_refptr<base::SequencedTaskRunner>& background_task_runner,
52 bool restore_old_session_cookies, 51 bool restore_old_session_cookies,
53 quota::SpecialStoragePolicy* special_storage_policy, 52 quota::SpecialStoragePolicy* special_storage_policy);
54 scoped_ptr<CookieCryptoDelegate> crypto_delegate);
55 53
56 // net::CookieMonster::PersistentCookieStore: 54 // net::CookieMonster::PersistentCookieStore:
57 virtual void Load(const LoadedCallback& loaded_callback) OVERRIDE; 55 virtual void Load(const LoadedCallback& loaded_callback) OVERRIDE;
58 virtual void LoadCookiesForKey(const std::string& key, 56 virtual void LoadCookiesForKey(const std::string& key,
59 const LoadedCallback& callback) OVERRIDE; 57 const LoadedCallback& callback) OVERRIDE;
60 virtual void AddCookie(const net::CanonicalCookie& cc) OVERRIDE; 58 virtual void AddCookie(const net::CanonicalCookie& cc) OVERRIDE;
61 virtual void UpdateCookieAccessTime(const net::CanonicalCookie& cc) OVERRIDE; 59 virtual void UpdateCookieAccessTime(const net::CanonicalCookie& cc) OVERRIDE;
62 virtual void DeleteCookie(const net::CanonicalCookie& cc) OVERRIDE; 60 virtual void DeleteCookie(const net::CanonicalCookie& cc) OVERRIDE;
63 virtual void SetForceKeepSessionState() OVERRIDE; 61 virtual void SetForceKeepSessionState() OVERRIDE;
64 virtual void Flush(const base::Closure& callback) OVERRIDE; 62 virtual void Flush(const base::Closure& callback) OVERRIDE;
65 63
66 protected: 64 protected:
67 virtual ~SQLitePersistentCookieStore(); 65 virtual ~SQLitePersistentCookieStore();
68 66
69 private: 67 private:
70 class Backend; 68 class Backend;
71 69
72 scoped_refptr<Backend> backend_; 70 scoped_refptr<Backend> backend_;
73 71
74 DISALLOW_COPY_AND_ASSIGN(SQLitePersistentCookieStore); 72 DISALLOW_COPY_AND_ASSIGN(SQLitePersistentCookieStore);
75 }; 73 };
76 74
77 } // namespace content 75 } // namespace content
78 76
79 #endif // CONTENT_BROWSER_NET_SQLITE_PERSISTENT_COOKIE_STORE_H_ 77 #endif // CONTENT_BROWSER_NET_SQLITE_PERSISTENT_COOKIE_STORE_H_
OLDNEW
« no previous file with comments | « chrome/browser/safe_browsing/safe_browsing_service.cc ('k') | content/browser/net/sqlite_persistent_cookie_store.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698