| OLD | NEW |
| 1 // Copyright 2014 The Chromium Authors. All rights reserved. | 1 // Copyright 2014 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/application_context_impl.h" | 5 #include "ios/chrome/browser/application_context_impl.h" |
| 6 | 6 |
| 7 #include <algorithm> | 7 #include <algorithm> |
| 8 #include <vector> | 8 #include <vector> |
| 9 | 9 |
| 10 #include "base/command_line.h" | 10 #include "base/command_line.h" |
| (...skipping 268 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 279 } | 279 } |
| 280 | 280 |
| 281 CRLSetFetcher* ApplicationContextImpl::GetCRLSetFetcher() { | 281 CRLSetFetcher* ApplicationContextImpl::GetCRLSetFetcher() { |
| 282 DCHECK(thread_checker_.CalledOnValidThread()); | 282 DCHECK(thread_checker_.CalledOnValidThread()); |
| 283 if (!crl_set_fetcher_) { | 283 if (!crl_set_fetcher_) { |
| 284 crl_set_fetcher_ = new CRLSetFetcher; | 284 crl_set_fetcher_ = new CRLSetFetcher; |
| 285 } | 285 } |
| 286 return crl_set_fetcher_.get(); | 286 return crl_set_fetcher_.get(); |
| 287 } | 287 } |
| 288 | 288 |
| 289 PhysicalWebDataSource* ApplicationContextImpl::GetPhysicalWebDataSource() { | 289 physical_web::PhysicalWebDataSource* |
| 290 ApplicationContextImpl::GetPhysicalWebDataSource() { |
| 290 DCHECK(thread_checker_.CalledOnValidThread()); | 291 DCHECK(thread_checker_.CalledOnValidThread()); |
| 291 if (!physical_web_data_source_) { | 292 if (!physical_web_data_source_) { |
| 292 physical_web_data_source_ = CreateIOSChromePhysicalWebDataSource(); | 293 physical_web_data_source_ = CreateIOSChromePhysicalWebDataSource(); |
| 293 DCHECK(physical_web_data_source_); | 294 DCHECK(physical_web_data_source_); |
| 294 } | 295 } |
| 295 return physical_web_data_source_.get(); | 296 return physical_web_data_source_.get(); |
| 296 } | 297 } |
| 297 | 298 |
| 298 void ApplicationContextImpl::SetApplicationLocale(const std::string& locale) { | 299 void ApplicationContextImpl::SetApplicationLocale(const std::string& locale) { |
| 299 DCHECK(thread_checker_.CalledOnValidThread()); | 300 DCHECK(thread_checker_.CalledOnValidThread()); |
| (...skipping 44 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 344 base::SequencedWorkerPool::SKIP_ON_SHUTDOWN)); | 345 base::SequencedWorkerPool::SKIP_ON_SHUTDOWN)); |
| 345 | 346 |
| 346 gcm_driver_ = gcm::CreateGCMDriverDesktop( | 347 gcm_driver_ = gcm::CreateGCMDriverDesktop( |
| 347 base::WrapUnique(new gcm::GCMClientFactory), GetLocalState(), store_path, | 348 base::WrapUnique(new gcm::GCMClientFactory), GetLocalState(), store_path, |
| 348 GetSystemURLRequestContext(), ::GetChannel(), | 349 GetSystemURLRequestContext(), ::GetChannel(), |
| 349 IOSChromeGCMProfileServiceFactory::GetProductCategoryForSubtypes(), | 350 IOSChromeGCMProfileServiceFactory::GetProductCategoryForSubtypes(), |
| 350 web::WebThread::GetTaskRunnerForThread(web::WebThread::UI), | 351 web::WebThread::GetTaskRunnerForThread(web::WebThread::UI), |
| 351 web::WebThread::GetTaskRunnerForThread(web::WebThread::IO), | 352 web::WebThread::GetTaskRunnerForThread(web::WebThread::IO), |
| 352 blocking_task_runner); | 353 blocking_task_runner); |
| 353 } | 354 } |
| OLD | NEW |