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

Unified Diff: remoting/base/url_request_context_getter.cc

Issue 1301333002: make ProxyService::CreateSystemProxyConfigService return scoped_ptrs NOT FOR REVIEW (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: non linux builds Created 5 years, 4 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: remoting/base/url_request_context_getter.cc
diff --git a/remoting/base/url_request_context_getter.cc b/remoting/base/url_request_context_getter.cc
index 4c9c2728c63ec3f5d81baf7a2a92bc5ea416c4c5..50258b95320d8828f8f5bc05596bb4a02e80f814 100644
--- a/remoting/base/url_request_context_getter.cc
+++ b/remoting/base/url_request_context_getter.cc
@@ -17,8 +17,8 @@ URLRequestContextGetter::URLRequestContextGetter(
scoped_refptr<base::SingleThreadTaskRunner> file_task_runner)
: network_task_runner_(network_task_runner),
file_task_runner_(file_task_runner) {
- proxy_config_service_.reset(net::ProxyService::CreateSystemProxyConfigService(
- network_task_runner_, file_task_runner));
+ proxy_config_service_ = net::ProxyService::CreateSystemProxyConfigService(
+ network_task_runner_, file_task_runner);
}
net::URLRequestContext* URLRequestContextGetter::GetURLRequestContext() {

Powered by Google App Engine
This is Rietveld 408576698