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/time.h" |
25 #include "net/base/net_export.h" | 25 #include "net/base/net_export.h" |
26 #include "net/cookies/canonical_cookie.h" | 26 #include "net/cookies/canonical_cookie.h" |
27 #include "net/cookies/cookie_constants.h" | 27 #include "net/cookies/cookie_constants.h" |
28 #include "net/cookies/cookie_store.h" | 28 #include "net/cookies/cookie_store.h" |
29 | 29 |
30 class GURL; | 30 class GURL; |
31 | 31 |
32 namespace base { | 32 namespace base { |
33 class Histogram; | 33 class Histogram; |
34 class HistogramBase; | 34 class HistogramBase; |
(...skipping 705 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
740 virtual ~PersistentCookieStore() {} | 740 virtual ~PersistentCookieStore() {} |
741 | 741 |
742 private: | 742 private: |
743 friend class base::RefCountedThreadSafe<PersistentCookieStore>; | 743 friend class base::RefCountedThreadSafe<PersistentCookieStore>; |
744 DISALLOW_COPY_AND_ASSIGN(PersistentCookieStore); | 744 DISALLOW_COPY_AND_ASSIGN(PersistentCookieStore); |
745 }; | 745 }; |
746 | 746 |
747 } // namespace net | 747 } // namespace net |
748 | 748 |
749 #endif // NET_COOKIES_COOKIE_MONSTER_H_ | 749 #endif // NET_COOKIES_COOKIE_MONSTER_H_ |
OLD | NEW |