OLD | NEW |
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 #ifndef NET_EXTRAS_SQLITE_SQLITE_PERSISTENT_COOKIE_STORE_H_ | 5 #ifndef NET_EXTRAS_SQLITE_SQLITE_PERSISTENT_COOKIE_STORE_H_ |
6 #define NET_EXTRAS_SQLITE_SQLITE_PERSISTENT_COOKIE_STORE_H_ | 6 #define NET_EXTRAS_SQLITE_SQLITE_PERSISTENT_COOKIE_STORE_H_ |
7 | 7 |
8 #include <list> | 8 #include <list> |
9 #include <string> | 9 #include <string> |
10 #include <utility> | 10 #include <utility> |
11 #include <vector> | 11 #include <vector> |
12 | 12 |
13 #include "base/callback_forward.h" | 13 #include "base/callback_forward.h" |
14 #include "base/macros.h" | 14 #include "base/macros.h" |
15 #include "base/memory/ref_counted.h" | 15 #include "base/memory/ref_counted.h" |
16 #include "net/cookies/cookie_monster.h" | 16 #include "net/cookies/cookie_monster.h" |
17 | 17 |
18 class Task; | |
19 | |
20 namespace base { | 18 namespace base { |
21 class FilePath; | 19 class FilePath; |
22 class SequencedTaskRunner; | 20 class SequencedTaskRunner; |
23 } // namespace base | 21 } // namespace base |
24 | 22 |
25 namespace net { | 23 namespace net { |
26 class CanonicalCookie; | 24 class CanonicalCookie; |
27 class CookieCryptoDelegate; | 25 class CookieCryptoDelegate; |
28 | 26 |
29 // Implements the PersistentCookieStore interface in terms of a SQLite database. | 27 // Implements the PersistentCookieStore interface in terms of a SQLite database. |
(...skipping 42 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
72 class Backend; | 70 class Backend; |
73 | 71 |
74 scoped_refptr<Backend> backend_; | 72 scoped_refptr<Backend> backend_; |
75 | 73 |
76 DISALLOW_COPY_AND_ASSIGN(SQLitePersistentCookieStore); | 74 DISALLOW_COPY_AND_ASSIGN(SQLitePersistentCookieStore); |
77 }; | 75 }; |
78 | 76 |
79 } // namespace net | 77 } // namespace net |
80 | 78 |
81 #endif // NET_EXTRAS_SQLITE_SQLITE_PERSISTENT_COOKIE_STORE_H_ | 79 #endif // NET_EXTRAS_SQLITE_SQLITE_PERSISTENT_COOKIE_STORE_H_ |
OLD | NEW |