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

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

Issue 9114020: Remove task.h and finish base::Bind() migration. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: fix typo Created 8 years, 11 months 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 | Annotate | Revision Log
« no previous file with comments | « media/video/capture/video_capture_proxy.h ('k') | net/base/keygen_handler_unittest.cc » ('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) 2011 The Chromium Authors. All rights reserved. 1 // Copyright (c) 2011 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_BASE_COOKIE_MONSTER_H_
8 #define NET_BASE_COOKIE_MONSTER_H_ 8 #define NET_BASE_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/task.h"
26 #include "base/time.h" 25 #include "base/time.h"
27 #include "net/base/cookie_store.h" 26 #include "net/base/cookie_store.h"
28 #include "net/base/net_export.h" 27 #include "net/base/net_export.h"
29 28
30 class GURL; 29 class GURL;
31 30
32 namespace base { 31 namespace base {
33 class Histogram; 32 class Histogram;
34 class TimeTicks; 33 class TimeTicks;
35 } // namespace base 34 } // namespace base
(...skipping 964 matching lines...) Expand 10 before | Expand all | Expand 10 after
1000 private: 999 private:
1001 DISALLOW_COPY_AND_ASSIGN(PersistentCookieStore); 1000 DISALLOW_COPY_AND_ASSIGN(PersistentCookieStore);
1002 }; 1001 };
1003 1002
1004 class CookieList : public std::vector<CookieMonster::CanonicalCookie> { 1003 class CookieList : public std::vector<CookieMonster::CanonicalCookie> {
1005 }; 1004 };
1006 1005
1007 } // namespace net 1006 } // namespace net
1008 1007
1009 #endif // NET_BASE_COOKIE_MONSTER_H_ 1008 #endif // NET_BASE_COOKIE_MONSTER_H_
OLDNEW
« no previous file with comments | « media/video/capture/video_capture_proxy.h ('k') | net/base/keygen_handler_unittest.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698