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 // Brought to you by the letter D and the number 2. | 5 // Brought to you by the letter D and the number 2. |
6 | 6 |
7 #ifndef NET_COOKIES_COOKIE_MONSTER_H_ | 7 #ifndef NET_COOKIES_COOKIE_MONSTER_H_ |
8 #define NET_COOKIES_COOKIE_MONSTER_H_ | 8 #define NET_COOKIES_COOKIE_MONSTER_H_ |
9 | 9 |
10 #include <deque> | 10 #include <deque> |
11 #include <map> | 11 #include <map> |
12 #include <queue> | 12 #include <queue> |
13 #include <set> | 13 #include <set> |
14 #include <string> | 14 #include <string> |
15 #include <utility> | 15 #include <utility> |
16 #include <vector> | 16 #include <vector> |
17 | 17 |
18 #include "base/basictypes.h" | 18 #include "base/basictypes.h" |
19 #include "base/callback_forward.h" | 19 #include "base/callback_forward.h" |
20 #include "base/gtest_prod_util.h" | 20 #include "base/gtest_prod_util.h" |
21 #include "base/memory/ref_counted.h" | 21 #include "base/memory/ref_counted.h" |
22 #include "base/memory/scoped_ptr.h" | 22 #include "base/memory/scoped_ptr.h" |
23 #include "base/synchronization/lock.h" | 23 #include "base/synchronization/lock.h" |
24 #include "base/time.h" | 24 #include "base/time.h" |
| 25 #include "net/base/net_export.h" |
25 #include "net/cookies/canonical_cookie.h" | 26 #include "net/cookies/canonical_cookie.h" |
26 #include "net/cookies/cookie_store.h" | 27 #include "net/cookies/cookie_store.h" |
27 #include "net/base/net_export.h" | |
28 | 28 |
29 class GURL; | 29 class GURL; |
30 | 30 |
31 namespace base { | 31 namespace base { |
32 class Histogram; | 32 class Histogram; |
33 class TimeTicks; | 33 class TimeTicks; |
34 } // namespace base | 34 } // namespace base |
35 | 35 |
36 namespace net { | 36 namespace net { |
37 | 37 |
(...skipping 692 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
730 virtual ~PersistentCookieStore() {} | 730 virtual ~PersistentCookieStore() {} |
731 | 731 |
732 private: | 732 private: |
733 friend class base::RefCountedThreadSafe<PersistentCookieStore>; | 733 friend class base::RefCountedThreadSafe<PersistentCookieStore>; |
734 DISALLOW_COPY_AND_ASSIGN(PersistentCookieStore); | 734 DISALLOW_COPY_AND_ASSIGN(PersistentCookieStore); |
735 }; | 735 }; |
736 | 736 |
737 } // namespace net | 737 } // namespace net |
738 | 738 |
739 #endif // NET_COOKIES_COOKIE_MONSTER_H_ | 739 #endif // NET_COOKIES_COOKIE_MONSTER_H_ |
OLD | NEW |