Index: chrome/browser/io_thread.h |
diff --git a/chrome/browser/io_thread.h b/chrome/browser/io_thread.h |
index c288ccf74574fbe4dd148726fe8f646657f321ca..8c9a7a46f914e6ae5f05ffe5c259f802768e5183 100644 |
--- a/chrome/browser/io_thread.h |
+++ b/chrome/browser/io_thread.h |
@@ -95,11 +95,11 @@ class IOThread : public content::BrowserThreadDelegate { |
// The first URLRequestContext is |system_url_request_context|. We introduce |
// |proxy_script_fetcher_context| for the second context. It has a direct |
// ProxyService, since we always directly connect to fetch the PAC script. |
- scoped_refptr<net::URLRequestContext> proxy_script_fetcher_context; |
+ scoped_ptr<net::URLRequestContext> proxy_script_fetcher_context; |
scoped_ptr<net::ProxyService> system_proxy_service; |
scoped_ptr<net::HttpTransactionFactory> system_http_transaction_factory; |
scoped_ptr<net::FtpTransactionFactory> system_ftp_transaction_factory; |
- scoped_refptr<net::URLRequestContext> system_request_context; |
+ scoped_ptr<net::URLRequestContext> system_request_context; |
SystemRequestContextLeakChecker system_request_context_leak_checker; |
// |system_cookie_store| and |system_server_bound_cert_service| are shared |
// between |proxy_script_fetcher_context| and |system_request_context|. |