| Index: components/data_reduction_proxy/core/common/data_reduction_proxy_headers_unittest.cc
|
| diff --git a/components/data_reduction_proxy/core/common/data_reduction_proxy_headers_unittest.cc b/components/data_reduction_proxy/core/common/data_reduction_proxy_headers_unittest.cc
|
| index fdcc54589d092080c74b45d7922cc9c0971af0f8..09258170e77b67866271e3aee1e2e1ca3119706f 100644
|
| --- a/components/data_reduction_proxy/core/common/data_reduction_proxy_headers_unittest.cc
|
| +++ b/components/data_reduction_proxy/core/common/data_reduction_proxy_headers_unittest.cc
|
| @@ -7,6 +7,7 @@
|
| #include <stddef.h>
|
| #include <stdint.h>
|
|
|
| +#include <memory>
|
| #include <vector>
|
|
|
| #include "base/macros.h"
|
| @@ -33,8 +34,8 @@ class DataReductionProxyHeadersTest : public testing::Test {
|
| }
|
|
|
| private:
|
| - scoped_ptr<DataReductionProxyEventCreator> event_creator_;
|
| - scoped_ptr<TestDataReductionProxyEventStorageDelegate> storage_delegate_;
|
| + std::unique_ptr<DataReductionProxyEventCreator> event_creator_;
|
| + std::unique_ptr<TestDataReductionProxyEventStorageDelegate> storage_delegate_;
|
| };
|
|
|
| TEST_F(DataReductionProxyHeadersTest, GetDataReductionProxyActionValue) {
|
|
|