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

Unified Diff: components/proxy_config/ios/proxy_service_factory.cc

Issue 2944313003: Remove the dependence on BrowserThread::FILE for (Closed)
Patch Set: address mmenke's comments Created 3 years, 6 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 side-by-side diff with in-line comments
Download patch
Index: components/proxy_config/ios/proxy_service_factory.cc
diff --git a/components/proxy_config/ios/proxy_service_factory.cc b/components/proxy_config/ios/proxy_service_factory.cc
index 600191ae7f8babc7cf47a4df800a8cde91d971db..e0e0775a558525a28e70d227d7f96c2374fead3b 100644
--- a/components/proxy_config/ios/proxy_service_factory.cc
+++ b/components/proxy_config/ios/proxy_service_factory.cc
@@ -17,8 +17,7 @@ std::unique_ptr<net::ProxyConfigService>
ProxyServiceFactory::CreateProxyConfigService(PrefProxyConfigTracker* tracker) {
std::unique_ptr<net::ProxyConfigService> base_service(
net::ProxyService::CreateSystemProxyConfigService(
- web::WebThread::GetTaskRunnerForThread(web::WebThread::IO),
- web::WebThread::GetTaskRunnerForThread(web::WebThread::FILE)));
+ web::WebThread::GetTaskRunnerForThread(web::WebThread::IO)));
return tracker->CreateTrackingProxyConfigService(std::move(base_service));
}

Powered by Google App Engine
This is Rietveld 408576698