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

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

Issue 2691263002: Revert of Remove header dependencies from sequence_checker.h to sequenced_worker_pool.h (Closed)
Patch Set: Created 3 years, 10 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 #include <memory> 8 #include <memory>
9 9
10 #include "base/bind.h" 10 #include "base/bind.h"
11 #include "base/callback.h" 11 #include "base/callback.h"
12 #include "base/files/file_path.h" 12 #include "base/files/file_path.h"
13 #include "base/files/file_util.h" 13 #include "base/files/file_util.h"
14 #include "base/memory/ref_counted.h" 14 #include "base/memory/ref_counted.h"
15 #include "base/profiler/scoped_tracker.h" 15 #include "base/profiler/scoped_tracker.h"
16 #include "base/threading/sequenced_worker_pool.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"
20 #include "net/cookies/cookie_constants.h" 19 #include "net/cookies/cookie_constants.h"
21 #include "net/cookies/cookie_util.h" 20 #include "net/cookies/cookie_util.h"
22 #include "net/extras/sqlite/cookie_crypto_delegate.h" 21 #include "net/extras/sqlite/cookie_crypto_delegate.h"
23 #include "storage/browser/quota/special_storage_policy.h" 22 #include "storage/browser/quota/special_storage_policy.h"
24 #include "url/gurl.h" 23 #include "url/gurl.h"
25 24
26 namespace content { 25 namespace content {
(...skipping 156 matching lines...) Expand 10 before | Expand all | Expand 10 after
183 } 182 }
184 } 183 }
185 184
186 if (!config.cookieable_schemes.empty()) 185 if (!config.cookieable_schemes.empty())
187 cookie_monster->SetCookieableSchemes(config.cookieable_schemes); 186 cookie_monster->SetCookieableSchemes(config.cookieable_schemes);
188 187
189 return std::move(cookie_monster); 188 return std::move(cookie_monster);
190 } 189 }
191 190
192 } // namespace content 191 } // namespace content
OLDNEW
« no previous file with comments | « content/browser/loader/url_loader_factory_impl_unittest.cc ('k') | content/browser/push_messaging/push_messaging_router.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698