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

Side by Side Diff: ios/chrome/browser/component_updater/ios_component_updater_configurator.cc

Issue 1902443004: Implements CR deduplication for iOS. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 4 years, 8 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 | ios/chrome/browser/prefs/browser_prefs.mm » ('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 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 "ios/chrome/browser/component_updater/ios_component_updater_configurato r.h" 5 #include "ios/chrome/browser/component_updater/ios_component_updater_configurato r.h"
6 6
7 #include <string> 7 #include <string>
8 #include <vector> 8 #include <vector>
9 9
10 #include "base/threading/sequenced_worker_pool.h" 10 #include "base/threading/sequenced_worker_pool.h"
(...skipping 136 matching lines...) Expand 10 before | Expand all | Expand 10 after
147 147
148 scoped_refptr<base::SequencedTaskRunner> 148 scoped_refptr<base::SequencedTaskRunner>
149 IOSConfigurator::GetSequencedTaskRunner() const { 149 IOSConfigurator::GetSequencedTaskRunner() const {
150 return web::WebThread::GetBlockingPool() 150 return web::WebThread::GetBlockingPool()
151 ->GetSequencedTaskRunnerWithShutdownBehavior( 151 ->GetSequencedTaskRunnerWithShutdownBehavior(
152 web::WebThread::GetBlockingPool()->GetSequenceToken(), 152 web::WebThread::GetBlockingPool()->GetSequenceToken(),
153 base::SequencedWorkerPool::SKIP_ON_SHUTDOWN); 153 base::SequencedWorkerPool::SKIP_ON_SHUTDOWN);
154 } 154 }
155 155
156 PrefService* IOSConfigurator::GetPrefService() const { 156 PrefService* IOSConfigurator::GetPrefService() const {
157 return nullptr; 157 return GetApplicationContext()->GetLocalState();
158 } 158 }
159 159
160 } // namespace 160 } // namespace
161 161
162 scoped_refptr<update_client::Configurator> MakeIOSComponentUpdaterConfigurator( 162 scoped_refptr<update_client::Configurator> MakeIOSComponentUpdaterConfigurator(
163 const base::CommandLine* cmdline, 163 const base::CommandLine* cmdline,
164 net::URLRequestContextGetter* context_getter) { 164 net::URLRequestContextGetter* context_getter) {
165 return new IOSConfigurator(cmdline, context_getter); 165 return new IOSConfigurator(cmdline, context_getter);
166 } 166 }
167 167
168 } // namespace component_updater 168 } // namespace component_updater
OLDNEW
« no previous file with comments | « no previous file | ios/chrome/browser/prefs/browser_prefs.mm » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698