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

Side by Side Diff: content/browser/net/quota_policy_cookie_store.cc

Issue 1549113002: Switch to standard integer types in content/browser/. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: rebase Created 4 years, 12 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
OLDNEW
1 // Copyright 2015 The Chromium Authors. All rights reserved. 1 // Copyright 2015 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 #include "content/browser/net/quota_policy_cookie_store.h" 5 #include "content/browser/net/quota_policy_cookie_store.h"
6 6
7 #include <list> 7 #include <list>
8 8
9 #include "base/basictypes.h"
10 #include "base/bind.h" 9 #include "base/bind.h"
11 #include "base/callback.h" 10 #include "base/callback.h"
12 #include "base/files/file_path.h" 11 #include "base/files/file_path.h"
13 #include "base/files/file_util.h" 12 #include "base/files/file_util.h"
14 #include "base/memory/ref_counted.h" 13 #include "base/memory/ref_counted.h"
15 #include "base/memory/scoped_ptr.h" 14 #include "base/memory/scoped_ptr.h"
16 #include "base/profiler/scoped_tracker.h" 15 #include "base/profiler/scoped_tracker.h"
17 #include "content/public/browser/browser_thread.h" 16 #include "content/public/browser/browser_thread.h"
18 #include "content/public/browser/cookie_store_factory.h" 17 #include "content/public/browser/cookie_store_factory.h"
19 #include "net/cookies/canonical_cookie.h" 18 #include "net/cookies/canonical_cookie.h"
(...skipping 159 matching lines...) Expand 10 before | Expand all | Expand 10 after
179 (config.session_cookie_mode == 178 (config.session_cookie_mode ==
180 CookieStoreConfig::RESTORED_SESSION_COOKIES)) { 179 CookieStoreConfig::RESTORED_SESSION_COOKIES)) {
181 cookie_monster->SetPersistSessionCookies(true); 180 cookie_monster->SetPersistSessionCookies(true);
182 } 181 }
183 } 182 }
184 183
185 return cookie_monster; 184 return cookie_monster;
186 } 185 }
187 186
188 } // namespace content 187 } // namespace content
OLDNEW
« no previous file with comments | « content/browser/net/quota_policy_cookie_store.h ('k') | content/browser/net/view_http_cache_job_factory.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698