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

Side by Side Diff: net/extras/sqlite/sqlite_persistent_cookie_store.h

Issue 2531373002: net: Cleanup class/struct forward declarations (Closed)
Patch Set: Rebase on top of master branch Created 4 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
« no previous file with comments | « net/extras/sqlite/sqlite_channel_id_store.h ('k') | net/http/bidirectional_stream.h » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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 #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
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_
OLDNEW
« no previous file with comments | « net/extras/sqlite/sqlite_channel_id_store.h ('k') | net/http/bidirectional_stream.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698