OLD | NEW |
1 // Copyright 2015 The Chromium Authors. All rights reserved. | 1 // Copyright 2015 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 CONTENT_BROWSER_NET_QUOTA_POLICY_COOKIE_STORE_H_ | 5 #ifndef CONTENT_BROWSER_NET_QUOTA_POLICY_COOKIE_STORE_H_ |
6 #define CONTENT_BROWSER_NET_QUOTA_POLICY_COOKIE_STORE_H_ | 6 #define CONTENT_BROWSER_NET_QUOTA_POLICY_COOKIE_STORE_H_ |
7 | 7 |
| 8 #include <stddef.h> |
| 9 |
8 #include <string> | 10 #include <string> |
9 #include <vector> | 11 #include <vector> |
10 | 12 |
11 #include "base/callback_forward.h" | 13 #include "base/callback_forward.h" |
12 #include "base/compiler_specific.h" | 14 #include "base/compiler_specific.h" |
| 15 #include "base/macros.h" |
13 #include "base/memory/ref_counted.h" | 16 #include "base/memory/ref_counted.h" |
14 #include "content/common/content_export.h" | 17 #include "content/common/content_export.h" |
15 #include "net/cookies/cookie_monster.h" | 18 #include "net/cookies/cookie_monster.h" |
16 #include "net/extras/sqlite/sqlite_persistent_cookie_store.h" | 19 #include "net/extras/sqlite/sqlite_persistent_cookie_store.h" |
17 | 20 |
18 class Task; | 21 class Task; |
19 | 22 |
20 namespace base { | 23 namespace base { |
21 class FilePath; | 24 class FilePath; |
22 class SequencedTaskRunner; | 25 class SequencedTaskRunner; |
(...skipping 50 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
73 | 76 |
74 scoped_refptr<storage::SpecialStoragePolicy> special_storage_policy_; | 77 scoped_refptr<storage::SpecialStoragePolicy> special_storage_policy_; |
75 scoped_refptr<net::SQLitePersistentCookieStore> persistent_store_; | 78 scoped_refptr<net::SQLitePersistentCookieStore> persistent_store_; |
76 | 79 |
77 DISALLOW_COPY_AND_ASSIGN(QuotaPolicyCookieStore); | 80 DISALLOW_COPY_AND_ASSIGN(QuotaPolicyCookieStore); |
78 }; | 81 }; |
79 | 82 |
80 } // namespace content | 83 } // namespace content |
81 | 84 |
82 #endif // CONTENT_BROWSER_NET_QUOTA_POLICY_COOKIE_STORE_H_ | 85 #endif // CONTENT_BROWSER_NET_QUOTA_POLICY_COOKIE_STORE_H_ |
OLD | NEW |