| 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> | 8 #include <stddef.h> |
| 9 | 9 |
| 10 #include <string> | 10 #include <string> |
| 11 #include <vector> | 11 #include <vector> |
| 12 | 12 |
| 13 #include "base/callback_forward.h" | 13 #include "base/callback_forward.h" |
| 14 #include "base/compiler_specific.h" | 14 #include "base/compiler_specific.h" |
| 15 #include "base/macros.h" | 15 #include "base/macros.h" |
| 16 #include "base/memory/ref_counted.h" | 16 #include "base/memory/ref_counted.h" |
| 17 #include "content/common/content_export.h" | 17 #include "content/common/content_export.h" |
| 18 #include "net/cookies/cookie_monster.h" | 18 #include "net/cookies/cookie_monster.h" |
| 19 #include "net/extras/sqlite/sqlite_persistent_cookie_store.h" | 19 #include "net/extras/sqlite/sqlite_persistent_cookie_store.h" |
| 20 | 20 |
| 21 class Task; | |
| 22 | |
| 23 namespace net { | 21 namespace net { |
| 24 class CanonicalCookie; | 22 class CanonicalCookie; |
| 25 } // namespace net | 23 } // namespace net |
| 26 | 24 |
| 27 namespace storage { | 25 namespace storage { |
| 28 class SpecialStoragePolicy; | 26 class SpecialStoragePolicy; |
| 29 } // namespace storage | 27 } // namespace storage |
| 30 | 28 |
| 31 namespace content { | 29 namespace content { |
| 32 | 30 |
| (...skipping 37 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 70 | 68 |
| 71 scoped_refptr<storage::SpecialStoragePolicy> special_storage_policy_; | 69 scoped_refptr<storage::SpecialStoragePolicy> special_storage_policy_; |
| 72 scoped_refptr<net::SQLitePersistentCookieStore> persistent_store_; | 70 scoped_refptr<net::SQLitePersistentCookieStore> persistent_store_; |
| 73 | 71 |
| 74 DISALLOW_COPY_AND_ASSIGN(QuotaPolicyCookieStore); | 72 DISALLOW_COPY_AND_ASSIGN(QuotaPolicyCookieStore); |
| 75 }; | 73 }; |
| 76 | 74 |
| 77 } // namespace content | 75 } // namespace content |
| 78 | 76 |
| 79 #endif // CONTENT_BROWSER_NET_QUOTA_POLICY_COOKIE_STORE_H_ | 77 #endif // CONTENT_BROWSER_NET_QUOTA_POLICY_COOKIE_STORE_H_ |
| OLD | NEW |