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

Unified Diff: android_webview/browser/aw_browser_context.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
« no previous file with comments | « no previous file | chrome/browser/net/proxy_service_factory.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: android_webview/browser/aw_browser_context.cc
diff --git a/android_webview/browser/aw_browser_context.cc b/android_webview/browser/aw_browser_context.cc
index 22d70ed6161f08e5e4e1294ccbe353c8f2d32275..d4a3b10636b5a758346c07c2902b9dfdb462a155 100644
--- a/android_webview/browser/aw_browser_context.cc
+++ b/android_webview/browser/aw_browser_context.cc
@@ -78,8 +78,7 @@ AwBrowserContext* g_browser_context = NULL;
std::unique_ptr<net::ProxyConfigService> CreateProxyConfigService() {
std::unique_ptr<net::ProxyConfigService> config_service =
net::ProxyService::CreateSystemProxyConfigService(
- BrowserThread::GetTaskRunnerForThread(BrowserThread::IO),
- nullptr /* Ignored on Android */);
+ BrowserThread::GetTaskRunnerForThread(BrowserThread::IO));
// TODO(csharrison) Architect the wrapper better so we don't need a cast for
// android ProxyConfigServices.
« no previous file with comments | « no previous file | chrome/browser/net/proxy_service_factory.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698