| Index: components/data_reduction_proxy/content/browser/data_reduction_proxy_message_filter_unittest.cc
|
| diff --git a/components/data_reduction_proxy/content/browser/data_reduction_proxy_message_filter_unittest.cc b/components/data_reduction_proxy/content/browser/data_reduction_proxy_message_filter_unittest.cc
|
| index 4f9764a73daa6e5f10552bb07c8dc0532618bfff..1c89e99d4d37562ac3791b681ed281355b2c95f5 100644
|
| --- a/components/data_reduction_proxy/content/browser/data_reduction_proxy_message_filter_unittest.cc
|
| +++ b/components/data_reduction_proxy/content/browser/data_reduction_proxy_message_filter_unittest.cc
|
| @@ -4,9 +4,10 @@
|
|
|
| #include "components/data_reduction_proxy/content/browser/data_reduction_proxy_message_filter.h"
|
|
|
| +#include <memory>
|
| +
|
| #include "base/command_line.h"
|
| #include "base/memory/ref_counted.h"
|
| -#include "base/memory/scoped_ptr.h"
|
| #include "components/data_reduction_proxy/core/browser/data_reduction_proxy_config.h"
|
| #include "components/data_reduction_proxy/core/browser/data_reduction_proxy_config_test_utils.h"
|
| #include "components/data_reduction_proxy/core/browser/data_reduction_proxy_test_utils.h"
|
| @@ -42,7 +43,7 @@ class DataReductionProxyMessageFilterTest : public testing::Test {
|
|
|
| private:
|
| base::MessageLoopForIO message_loop_;
|
| - scoped_ptr<DataReductionProxyTestContext> test_context_;
|
| + std::unique_ptr<DataReductionProxyTestContext> test_context_;
|
| scoped_refptr<DataReductionProxyMessageFilter> message_filter_;
|
| };
|
|
|
|
|