Index: android_webview/browser/net/aw_url_request_context_getter.cc |
diff --git a/android_webview/browser/net/aw_url_request_context_getter.cc b/android_webview/browser/net/aw_url_request_context_getter.cc |
index 1aa4044ecad8ee755ec0dc5f241c95c4f9511864..779580db0268828abcb73106a5369d0499bebdbc 100644 |
--- a/android_webview/browser/net/aw_url_request_context_getter.cc |
+++ b/android_webview/browser/net/aw_url_request_context_getter.cc |
@@ -215,9 +215,8 @@ void AwURLRequestContextGetter::InitializeURLRequestContext() { |
// Android provides a local HTTP proxy that handles all the proxying. |
// Create the proxy without a resolver since we rely on this local HTTP proxy. |
// TODO(sgurun) is this behavior guaranteed through SDK? |
- builder.set_proxy_service( |
- make_scoped_ptr(net::ProxyService::CreateWithoutProxyResolver( |
- proxy_config_service_.release(), net_log_.get()))); |
+ builder.set_proxy_service(net::ProxyService::CreateWithoutProxyResolver( |
+ proxy_config_service_.release(), net_log_.get())); |
builder.set_net_log(net_log_.get()); |
builder.SetCookieAndChannelIdStores(cookie_store_, NULL); |
ApplyCmdlineOverridesToURLRequestContextBuilder(&builder); |