Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(2016)

Side by Side Diff: net/cookies/cookie_monster.h

Issue 2546183004: Remove unused linked_ptr inclusion (Closed)
Patch Set: Created 4 years ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
« no previous file with comments | « media/video/gpu_memory_buffer_video_frame_pool.cc ('k') | ui/app_list/views/contents_view.h » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
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
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_
OLDNEW
« no previous file with comments | « media/video/gpu_memory_buffer_video_frame_pool.cc ('k') | ui/app_list/views/contents_view.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698