| Index: content/shell/browser/shell_url_request_context_getter.h
|
| diff --git a/content/shell/browser/shell_url_request_context_getter.h b/content/shell/browser/shell_url_request_context_getter.h
|
| index 7a83ba05f2de8697fb415f22a936deb42f7572b8..18e4b8d28c29da9641254686ca6a0976c6d8f9e5 100644
|
| --- a/content/shell/browser/shell_url_request_context_getter.h
|
| +++ b/content/shell/browser/shell_url_request_context_getter.h
|
| @@ -53,9 +53,9 @@ class ShellURLRequestContextGetter : public net::URLRequestContextGetter {
|
|
|
| // Used by subclasses to create their own implementation of NetworkDelegate
|
| // and net::ProxyService.
|
| - virtual net::NetworkDelegate* CreateNetworkDelegate();
|
| - virtual net::ProxyConfigService* GetProxyConfigService();
|
| - virtual net::ProxyService* GetProxyService();
|
| + virtual scoped_ptr<net::NetworkDelegate> CreateNetworkDelegate();
|
| + virtual scoped_ptr<net::ProxyConfigService> GetProxyConfigService();
|
| + virtual scoped_ptr<net::ProxyService> GetProxyService();
|
|
|
| private:
|
| bool ignore_certificate_errors_;
|
|
|