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

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

Issue 7833042: Finalize a CL originally by departed intern ycxiao@ that detaches the loading of cookies from the... (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src/
Patch Set: '' Created 9 years, 3 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 unified diff | Download patch | Annotate | Revision Log
OLDNEW
1 // Copyright (c) 2011 The Chromium Authors. All rights reserved. 1 // Copyright (c) 2011 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 CHROME_BROWSER_NET_SQLITE_PERSISTENT_COOKIE_STORE_H_ 7 #ifndef CHROME_BROWSER_NET_SQLITE_PERSISTENT_COOKIE_STORE_H_
8 #define CHROME_BROWSER_NET_SQLITE_PERSISTENT_COOKIE_STORE_H_ 8 #define CHROME_BROWSER_NET_SQLITE_PERSISTENT_COOKIE_STORE_H_
9 #pragma once 9 #pragma once
10 10
11 #include <string> 11 #include <string>
12 #include <vector> 12 #include <vector>
13 13
14 #include "base/memory/ref_counted.h" 14 #include "base/memory/ref_counted.h"
15 #include "net/base/cookie_monster.h" 15 #include "net/base/cookie_monster.h"
16 16
17 class FilePath; 17 class FilePath;
18 18
19 // Implements the PersistentCookieStore interface in terms of a SQLite database. 19 // Implements the PersistentCookieStore interface in terms of a SQLite database.
20 // For documentation about the actual member functions consult the documentation 20 // For documentation about the actual member functions consult the documentation
21 // of the parent class |net::CookieMonster::PersistentCookieStore|. 21 // of the parent class |net::CookieMonster::PersistentCookieStore|.
22 class SQLitePersistentCookieStore 22 class SQLitePersistentCookieStore
23 : public net::CookieMonster::PersistentCookieStore { 23 : public net::CookieMonster::PersistentCookieStore {
24 public: 24 public:
25 explicit SQLitePersistentCookieStore(const FilePath& path); 25 explicit SQLitePersistentCookieStore(const FilePath& path);
26 virtual ~SQLitePersistentCookieStore(); 26 virtual ~SQLitePersistentCookieStore();
27 27
28 virtual bool Load(std::vector<net::CookieMonster::CanonicalCookie*>* cookies); 28 virtual bool Load(const LoadedCallback& loaded_callback) OVERRIDE;
29 29
30 virtual void AddCookie(const net::CookieMonster::CanonicalCookie& cc); 30 virtual void AddCookie(
31 const net::CookieMonster::CanonicalCookie& cc) OVERRIDE;
32
31 virtual void UpdateCookieAccessTime( 33 virtual void UpdateCookieAccessTime(
32 const net::CookieMonster::CanonicalCookie& cc); 34 const net::CookieMonster::CanonicalCookie& cc) OVERRIDE;
33 virtual void DeleteCookie(const net::CookieMonster::CanonicalCookie& cc);
34 35
35 virtual void SetClearLocalStateOnExit(bool clear_local_state); 36 virtual void DeleteCookie(
37 const net::CookieMonster::CanonicalCookie& cc) OVERRIDE;
36 38
37 virtual void Flush(Task* completion_task); 39 virtual void SetClearLocalStateOnExit(bool clear_local_state) OVERRIDE;
40
41 virtual void Flush(Task* completion_task) OVERRIDE;
38 42
39 private: 43 private:
40 class Backend; 44 class Backend;
41 45
42 scoped_refptr<Backend> backend_; 46 scoped_refptr<Backend> backend_;
43 47
44 DISALLOW_COPY_AND_ASSIGN(SQLitePersistentCookieStore); 48 DISALLOW_COPY_AND_ASSIGN(SQLitePersistentCookieStore);
45 }; 49 };
46 50
47 #endif // CHROME_BROWSER_NET_SQLITE_PERSISTENT_COOKIE_STORE_H_ 51 #endif // CHROME_BROWSER_NET_SQLITE_PERSISTENT_COOKIE_STORE_H_
OLDNEW
« no previous file with comments | « chrome/browser/net/cookie_policy_browsertest.cc ('k') | chrome/browser/net/sqlite_persistent_cookie_store.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698