| Index: components/data_reduction_proxy/core/browser/data_reduction_proxy_config_service_client.cc | 
| diff --git a/components/data_reduction_proxy/core/browser/data_reduction_proxy_config_service_client.cc b/components/data_reduction_proxy/core/browser/data_reduction_proxy_config_service_client.cc | 
| index e231d3083012ce5ec15885719c8cd075bb062f76..358499f79f6d03068567a3fee7db57abae85ddbc 100644 | 
| --- a/components/data_reduction_proxy/core/browser/data_reduction_proxy_config_service_client.cc | 
| +++ b/components/data_reduction_proxy/core/browser/data_reduction_proxy_config_service_client.cc | 
| @@ -225,8 +225,9 @@ scoped_ptr<net::URLFetcher> | 
| DataReductionProxyConfigServiceClient::GetURLFetcherForConfig( | 
| const GURL& secure_proxy_check_url, | 
| const std::string& request_body) { | 
| -  scoped_ptr<net::URLFetcher> fetcher(net::URLFetcher::Create( | 
| -      secure_proxy_check_url, net::URLFetcher::POST, this)); | 
| +  scoped_ptr<net::URLFetcher> fetcher( | 
| +      net::URLFetcher::Create(secure_proxy_check_url, net::URLFetcher::POST, | 
| +                              this).Pass()); | 
| fetcher->SetLoadFlags(net::LOAD_BYPASS_PROXY); | 
| fetcher->SetUploadData("application/json", request_body); | 
| DCHECK(url_request_context_getter_); | 
|  |