| 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_BASE_COOKIE_MONSTER_H_ | 7 #ifndef NET_COOKIES_COOKIE_MONSTER_H_ |
| 8 #define NET_BASE_COOKIE_MONSTER_H_ | 8 #define NET_COOKIES_COOKIE_MONSTER_H_ |
| 9 #pragma once | 9 #pragma once |
| 10 | 10 |
| 11 #include <deque> | 11 #include <deque> |
| 12 #include <map> | 12 #include <map> |
| 13 #include <queue> | 13 #include <queue> |
| 14 #include <set> | 14 #include <set> |
| 15 #include <string> | 15 #include <string> |
| 16 #include <utility> | 16 #include <utility> |
| 17 #include <vector> | 17 #include <vector> |
| 18 | 18 |
| 19 #include "base/basictypes.h" | 19 #include "base/basictypes.h" |
| 20 #include "base/callback_forward.h" | 20 #include "base/callback_forward.h" |
| 21 #include "base/gtest_prod_util.h" | 21 #include "base/gtest_prod_util.h" |
| 22 #include "base/memory/ref_counted.h" | 22 #include "base/memory/ref_counted.h" |
| 23 #include "base/memory/scoped_ptr.h" | 23 #include "base/memory/scoped_ptr.h" |
| 24 #include "base/synchronization/lock.h" | 24 #include "base/synchronization/lock.h" |
| 25 #include "base/time.h" | 25 #include "base/time.h" |
| 26 #include "net/base/cookie_store.h" | 26 #include "net/cookies/cookie_store.h" |
| 27 #include "net/base/net_export.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 { |
| (...skipping 924 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 961 | 961 |
| 962 private: | 962 private: |
| 963 DISALLOW_COPY_AND_ASSIGN(PersistentCookieStore); | 963 DISALLOW_COPY_AND_ASSIGN(PersistentCookieStore); |
| 964 }; | 964 }; |
| 965 | 965 |
| 966 class CookieList : public std::vector<CookieMonster::CanonicalCookie> { | 966 class CookieList : public std::vector<CookieMonster::CanonicalCookie> { |
| 967 }; | 967 }; |
| 968 | 968 |
| 969 } // namespace net | 969 } // namespace net |
| 970 | 970 |
| 971 #endif // NET_BASE_COOKIE_MONSTER_H_ | 971 #endif // NET_COOKIES_COOKIE_MONSTER_H_ |
| OLD | NEW |