| Index: components/data_reduction_proxy/core/browser/data_reduction_proxy_interceptor.h
|
| diff --git a/components/data_reduction_proxy/core/browser/data_reduction_proxy_interceptor.h b/components/data_reduction_proxy/core/browser/data_reduction_proxy_interceptor.h
|
| index 470151d12626fe5099af5c22937ce333ef7e0520..365d4a2c9e18618517a063917253299e5e5d83fc 100644
|
| --- a/components/data_reduction_proxy/core/browser/data_reduction_proxy_interceptor.h
|
| +++ b/components/data_reduction_proxy/core/browser/data_reduction_proxy_interceptor.h
|
| @@ -5,8 +5,9 @@
|
| #ifndef COMPONENTS_DATA_REDUCTION_PROXY_CORE_BROWSER_DATA_REDUCTION_PROXY_INTERCEPTOR_H_
|
| #define COMPONENTS_DATA_REDUCTION_PROXY_CORE_BROWSER_DATA_REDUCTION_PROXY_INTERCEPTOR_H_
|
|
|
| +#include <memory>
|
| +
|
| #include "base/macros.h"
|
| -#include "base/memory/scoped_ptr.h"
|
| #include "components/data_reduction_proxy/core/common/data_reduction_proxy_headers.h"
|
| #include "net/url_request/url_request_interceptor.h"
|
|
|
| @@ -82,7 +83,7 @@ class DataReductionProxyInterceptor : public net::URLRequestInterceptor {
|
| // Object responsible for identifying cases when a response should cause the
|
| // data reduction proxy to be bypassed, and for triggering proxy bypasses in
|
| // these cases.
|
| - scoped_ptr<DataReductionProxyBypassProtocol> bypass_protocol_;
|
| + std::unique_ptr<DataReductionProxyBypassProtocol> bypass_protocol_;
|
|
|
| DISALLOW_COPY_AND_ASSIGN(DataReductionProxyInterceptor);
|
| };
|
|
|