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

Unified Diff: chrome/service/net/service_url_request_context_getter.cc

Issue 540593002: Use scoped_refptr<SingleThreadTaskRunner> when initializing ProxyConfigService (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 6 years, 3 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: chrome/service/net/service_url_request_context_getter.cc
diff --git a/chrome/service/net/service_url_request_context_getter.cc b/chrome/service/net/service_url_request_context_getter.cc
index 8f0de4377c6eea4b6c28747396524d5d51ecf1f2..3741990603a308b1102bc3387b3d0a4b2617d340 100644
--- a/chrome/service/net/service_url_request_context_getter.cc
+++ b/chrome/service/net/service_url_request_context_getter.cc
@@ -105,8 +105,8 @@ ServiceURLRequestContextGetter::ServiceURLRequestContextGetter()
// MessageLoopProxy* instead of MessageLoop*.
DCHECK(g_service_process);
proxy_config_service_.reset(net::ProxyService::CreateSystemProxyConfigService(
- g_service_process->io_thread()->message_loop_proxy().get(),
- g_service_process->file_thread()->message_loop()));
+ g_service_process->io_thread()->message_loop_proxy(),
+ g_service_process->file_thread()->message_loop_proxy()));
}
net::URLRequestContext*
« no previous file with comments | « chrome/browser/net/proxy_service_factory.cc ('k') | content/shell/browser/shell_url_request_context_getter.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698