Chromium Code Reviews| Index: net/proxy/proxy_service_v8.h |
| diff --git a/net/proxy/proxy_service_v8.h b/net/proxy/proxy_service_v8.h |
| index 0e339ebf3e76bf690e1ee50838de33d948760a6c..f61f633b7a60b77151c62a04936fc1a8cef08526 100644 |
| --- a/net/proxy/proxy_service_v8.h |
| +++ b/net/proxy/proxy_service_v8.h |
| @@ -6,6 +6,7 @@ |
| #define NET_PROXY_PROXY_SERVICE_V8_H_ |
| #include "base/basictypes.h" |
| +#include "base/memory/scoped_ptr.h" |
| #include "net/base/net_export.h" |
| namespace net { |
| @@ -37,7 +38,7 @@ class ProxyService; |
| // # multi-threading model. In order for this to be safe to use, *ALL* the |
| // # other V8's running in the process must use v8::Locker. |
| // ########################################################################## |
| -NET_EXPORT ProxyService* CreateProxyServiceUsingV8ProxyResolver( |
| +NET_EXPORT scoped_ptr<ProxyService> CreateProxyServiceUsingV8ProxyResolver( |
| ProxyConfigService* proxy_config_service, |
|
pauljensen
2015/08/28 13:38:02
would be nice to make this a scoped_ptr
Randy Smith (Not in Mondays)
2015/09/02 23:42:19
See other comment.
|
| ProxyScriptFetcher* proxy_script_fetcher, |
| DhcpProxyScriptFetcher* dhcp_proxy_script_fetcher, |