| 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 <stddef.h> | 10 #include <stddef.h> |
| 11 #include <stdint.h> | 11 #include <stdint.h> |
| 12 | 12 |
| 13 #include <deque> | 13 #include <deque> |
| 14 #include <map> | 14 #include <map> |
| 15 #include <memory> | 15 #include <memory> |
| 16 #include <queue> | 16 #include <queue> |
| 17 #include <set> | 17 #include <set> |
| 18 #include <string> | 18 #include <string> |
| 19 #include <utility> | 19 #include <utility> |
| 20 #include <vector> | 20 #include <vector> |
| 21 | 21 |
| 22 #include "base/callback_forward.h" | 22 #include "base/callback_forward.h" |
| 23 #include "base/gtest_prod_util.h" | 23 #include "base/gtest_prod_util.h" |
| 24 #include "base/macros.h" | 24 #include "base/macros.h" |
| 25 #include "base/memory/linked_ptr.h" | |
| 26 #include "base/memory/ref_counted.h" | 25 #include "base/memory/ref_counted.h" |
| 27 #include "base/memory/weak_ptr.h" | 26 #include "base/memory/weak_ptr.h" |
| 28 #include "base/threading/thread_checker.h" | 27 #include "base/threading/thread_checker.h" |
| 29 #include "base/time/time.h" | 28 #include "base/time/time.h" |
| 30 #include "net/base/net_export.h" | 29 #include "net/base/net_export.h" |
| 31 #include "net/cookies/canonical_cookie.h" | 30 #include "net/cookies/canonical_cookie.h" |
| 32 #include "net/cookies/cookie_constants.h" | 31 #include "net/cookies/cookie_constants.h" |
| 33 #include "net/cookies/cookie_store.h" | 32 #include "net/cookies/cookie_store.h" |
| 34 #include "url/gurl.h" | 33 #include "url/gurl.h" |
| 35 | 34 |
| (...skipping 761 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 797 virtual ~PersistentCookieStore() {} | 796 virtual ~PersistentCookieStore() {} |
| 798 | 797 |
| 799 private: | 798 private: |
| 800 friend class base::RefCountedThreadSafe<PersistentCookieStore>; | 799 friend class base::RefCountedThreadSafe<PersistentCookieStore>; |
| 801 DISALLOW_COPY_AND_ASSIGN(PersistentCookieStore); | 800 DISALLOW_COPY_AND_ASSIGN(PersistentCookieStore); |
| 802 }; | 801 }; |
| 803 | 802 |
| 804 } // namespace net | 803 } // namespace net |
| 805 | 804 |
| 806 #endif // NET_COOKIES_COOKIE_MONSTER_H_ | 805 #endif // NET_COOKIES_COOKIE_MONSTER_H_ |
| OLD | NEW |