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

Side by Side Diff: ios/chrome/browser/net/cookie_util.mm

Issue 2878943002: Use TaskScheduler instead of SequencedWorkerPool in cookie_util.mm. (Closed)
Patch Set: Created 3 years, 7 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
« no previous file with comments | « no previous file | no next file » | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 // Copyright 2012 The Chromium Authors. All rights reserved. 1 // Copyright 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 #include "ios/chrome/browser/net/cookie_util.h" 5 #include "ios/chrome/browser/net/cookie_util.h"
6 6
7 #import <Foundation/Foundation.h> 7 #import <Foundation/Foundation.h>
8 #include <stddef.h> 8 #include <stddef.h>
9 #include <sys/sysctl.h> 9 #include <sys/sysctl.h>
10 10
11 #include "base/logging.h" 11 #include "base/logging.h"
12 #import "base/mac/bind_objc_block.h" 12 #import "base/mac/bind_objc_block.h"
13 #include "base/memory/ptr_util.h" 13 #include "base/memory/ptr_util.h"
14 #include "base/memory/ref_counted.h" 14 #include "base/memory/ref_counted.h"
15 #include "base/threading/sequenced_worker_pool.h" 15 #include "base/task_scheduler/post_task.h"
16 #include "ios/chrome/browser/browser_state/chrome_browser_state.h" 16 #include "ios/chrome/browser/browser_state/chrome_browser_state.h"
17 #include "ios/net/cookies/cookie_store_ios_persistent.h" 17 #include "ios/net/cookies/cookie_store_ios_persistent.h"
18 #include "ios/web/public/web_thread.h" 18 #include "ios/web/public/web_thread.h"
19 #include "net/cookies/cookie_monster.h" 19 #include "net/cookies/cookie_monster.h"
20 #include "net/cookies/cookie_store.h" 20 #include "net/cookies/cookie_store.h"
21 #include "net/extras/sqlite/sqlite_persistent_cookie_store.h" 21 #include "net/extras/sqlite/sqlite_persistent_cookie_store.h"
22 #include "net/url_request/url_request_context.h" 22 #include "net/url_request/url_request_context.h"
23 #include "net/url_request/url_request_context_getter.h" 23 #include "net/url_request/url_request_context_getter.h"
24 24
25 #if !defined(__has_feature) || !__has_feature(objc_arc) 25 #if !defined(__has_feature) || !__has_feature(objc_arc)
(...skipping 11 matching lines...) Expand all
37 void DoNothing(int n) {} 37 void DoNothing(int n) {}
38 38
39 // Creates a SQLitePersistentCookieStore running on a background thread. 39 // Creates a SQLitePersistentCookieStore running on a background thread.
40 scoped_refptr<net::SQLitePersistentCookieStore> CreatePersistentCookieStore( 40 scoped_refptr<net::SQLitePersistentCookieStore> CreatePersistentCookieStore(
41 const base::FilePath& path, 41 const base::FilePath& path,
42 bool restore_old_session_cookies, 42 bool restore_old_session_cookies,
43 net::CookieCryptoDelegate* crypto_delegate) { 43 net::CookieCryptoDelegate* crypto_delegate) {
44 return scoped_refptr<net::SQLitePersistentCookieStore>( 44 return scoped_refptr<net::SQLitePersistentCookieStore>(
45 new net::SQLitePersistentCookieStore( 45 new net::SQLitePersistentCookieStore(
46 path, web::WebThread::GetTaskRunnerForThread(web::WebThread::IO), 46 path, web::WebThread::GetTaskRunnerForThread(web::WebThread::IO),
47 web::WebThread::GetBlockingPool()->GetSequencedTaskRunner( 47 base::CreateSequencedTaskRunnerWithTraits(
48 web::WebThread::GetBlockingPool()->GetSequenceToken()), 48 {base::MayBlock(), base::TaskPriority::BACKGROUND}),
49 restore_old_session_cookies, crypto_delegate)); 49 restore_old_session_cookies, crypto_delegate));
50 } 50 }
51 51
52 // Creates a CookieMonster configured by |config|. 52 // Creates a CookieMonster configured by |config|.
53 std::unique_ptr<net::CookieMonster> CreateCookieMonster( 53 std::unique_ptr<net::CookieMonster> CreateCookieMonster(
54 const CookieStoreConfig& config) { 54 const CookieStoreConfig& config) {
55 if (config.path.empty()) { 55 if (config.path.empty()) {
56 // Empty path means in-memory store. 56 // Empty path means in-memory store.
57 return base::MakeUnique<net::CookieMonster>(nullptr, nullptr); 57 return base::MakeUnique<net::CookieMonster>(nullptr, nullptr);
58 } 58 }
(...skipping 67 matching lines...) Expand 10 before | Expand all | Expand 10 after
126 browser_state->GetRequestContext(); 126 browser_state->GetRequestContext();
127 web::WebThread::PostTask( 127 web::WebThread::PostTask(
128 web::WebThread::IO, FROM_HERE, base::BindBlockArc(^{ 128 web::WebThread::IO, FROM_HERE, base::BindBlockArc(^{
129 getter->GetURLRequestContext() 129 getter->GetURLRequestContext()
130 ->cookie_store() 130 ->cookie_store()
131 ->DeleteSessionCookiesAsync(base::Bind(&DoNothing)); 131 ->DeleteSessionCookiesAsync(base::Bind(&DoNothing));
132 })); 132 }));
133 } 133 }
134 134
135 } // namespace cookie_util 135 } // namespace cookie_util
OLDNEW
« no previous file with comments | « no previous file | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698