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

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

Issue 1535363003: Switch to standard integer types in net/. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: stddef Created 5 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 | « net/cookies/cookie_monster_unittest.cc ('k') | net/cookies/cookie_util_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) 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 number 42. 5 // Brought to you by number 42.
6 6
7 #ifndef NET_COOKIES_COOKIE_STORE_H_ 7 #ifndef NET_COOKIES_COOKIE_STORE_H_
8 #define NET_COOKIES_COOKIE_STORE_H_ 8 #define NET_COOKIES_COOKIE_STORE_H_
9 9
10 #include <string> 10 #include <string>
11 #include <vector> 11 #include <vector>
12 12
13 #include "base/basictypes.h"
14 #include "base/callback.h" 13 #include "base/callback.h"
15 #include "base/callback_list.h" 14 #include "base/callback_list.h"
16 #include "base/memory/ref_counted.h" 15 #include "base/memory/ref_counted.h"
17 #include "base/time/time.h" 16 #include "base/time/time.h"
18 #include "net/base/net_export.h" 17 #include "net/base/net_export.h"
19 #include "net/cookies/canonical_cookie.h" 18 #include "net/cookies/canonical_cookie.h"
20 #include "net/cookies/cookie_options.h" 19 #include "net/cookies/cookie_options.h"
21 20
22 class GURL; 21 class GURL;
23 22
(...skipping 96 matching lines...) Expand 10 before | Expand all | Expand 10 after
120 119
121 protected: 120 protected:
122 friend class base::RefCountedThreadSafe<CookieStore>; 121 friend class base::RefCountedThreadSafe<CookieStore>;
123 CookieStore(); 122 CookieStore();
124 virtual ~CookieStore(); 123 virtual ~CookieStore();
125 }; 124 };
126 125
127 } // namespace net 126 } // namespace net
128 127
129 #endif // NET_COOKIES_COOKIE_STORE_H_ 128 #endif // NET_COOKIES_COOKIE_STORE_H_
OLDNEW
« no previous file with comments | « net/cookies/cookie_monster_unittest.cc ('k') | net/cookies/cookie_util_unittest.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698