| Index: components/data_reduction_proxy/core/browser/data_reduction_proxy_network_delegate.h
|
| diff --git a/components/data_reduction_proxy/core/browser/data_reduction_proxy_network_delegate.h b/components/data_reduction_proxy/core/browser/data_reduction_proxy_network_delegate.h
|
| index 37831b9e5f0991461f25b21cd889878af68e1c4f..c184fba85a69d1f60e60088789677dbfd710f73e 100644
|
| --- a/components/data_reduction_proxy/core/browser/data_reduction_proxy_network_delegate.h
|
| +++ b/components/data_reduction_proxy/core/browser/data_reduction_proxy_network_delegate.h
|
| @@ -7,11 +7,11 @@
|
|
|
| #include <stdint.h>
|
|
|
| +#include <memory>
|
| #include <string>
|
|
|
| #include "base/gtest_prod_util.h"
|
| #include "base/macros.h"
|
| -#include "base/memory/scoped_ptr.h"
|
| #include "components/data_reduction_proxy/core/browser/data_reduction_proxy_metrics.h"
|
| #include "net/base/layered_network_delegate.h"
|
| #include "net/proxy/proxy_retry_info.h"
|
| @@ -68,7 +68,7 @@ class DataReductionProxyNetworkDelegate : public net::LayeredNetworkDelegate {
|
| // each delegate method. For example, the implementation of
|
| // OnHeadersReceived() calls OnHeadersReceivedInternal().
|
| DataReductionProxyNetworkDelegate(
|
| - scoped_ptr<net::NetworkDelegate> network_delegate,
|
| + std::unique_ptr<net::NetworkDelegate> network_delegate,
|
| DataReductionProxyConfig* config,
|
| DataReductionProxyRequestOptions* handler,
|
| const DataReductionProxyConfigurator* configurator);
|
|
|