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

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

Issue 3076013: Move ASCIIToWide and ASCIIToUTF16 to utf_string_conversions.h. I've found it... (Closed) Base URL: svn://chrome-svn/chrome/trunk/src/
Patch Set: '' Created 10 years, 4 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
OLDNEW
1 // Copyright (c) 2006-2009 The Chromium Authors. All rights reserved. 1 // Copyright (c) 2010 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 number 42. 5 // Brought to you by number 42.
6 6
7 #ifndef NET_BASE_COOKIE_STORE_H_ 7 #ifndef NET_BASE_COOKIE_STORE_H_
8 #define NET_BASE_COOKIE_STORE_H_ 8 #define NET_BASE_COOKIE_STORE_H_
9 #pragma once 9 #pragma once
10 10
11 #include <string> 11 #include <string>
12 #include <vector>
12 13
13 #include "base/basictypes.h" 14 #include "base/basictypes.h"
14 #include "base/ref_counted.h" 15 #include "base/ref_counted.h"
15 #include "base/time.h" 16 #include "base/time.h"
16 #include "net/base/cookie_options.h" 17 #include "net/base/cookie_options.h"
17 18
18 class GURL; 19 class GURL;
19 20
20 namespace net { 21 namespace net {
21 22
(...skipping 49 matching lines...) Expand 10 before | Expand all | Expand 10 after
71 } 72 }
72 73
73 protected: 74 protected:
74 friend class base::RefCountedThreadSafe<CookieStore>; 75 friend class base::RefCountedThreadSafe<CookieStore>;
75 virtual ~CookieStore() {} 76 virtual ~CookieStore() {}
76 }; 77 };
77 78
78 } // namespace net 79 } // namespace net
79 80
80 #endif // NET_BASE_COOKIE_STORE_H_ 81 #endif // NET_BASE_COOKIE_STORE_H_
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698