| Index: components/data_reduction_proxy/core/browser/data_reduction_proxy_settings_test_utils.h
|
| diff --git a/components/data_reduction_proxy/core/browser/data_reduction_proxy_settings_test_utils.h b/components/data_reduction_proxy/core/browser/data_reduction_proxy_settings_test_utils.h
|
| index bf2944f34951b86e22071942d737f9550a579b35..04b7f81ba512fd4d5aab21223b4f82ec22d54169 100644
|
| --- a/components/data_reduction_proxy/core/browser/data_reduction_proxy_settings_test_utils.h
|
| +++ b/components/data_reduction_proxy/core/browser/data_reduction_proxy_settings_test_utils.h
|
| @@ -6,9 +6,9 @@
|
| #define COMPONENTS_DATA_REDUCTION_PROXY_CORE_BROWSER_DATA_REDUCTION_PROXY_SETTINGS_TEST_UTILS_H_
|
|
|
| #include <map>
|
| +#include <memory>
|
| #include <string>
|
|
|
| -#include "base/memory/scoped_ptr.h"
|
| #include "components/data_reduction_proxy/core/browser/data_reduction_proxy_settings.h"
|
| #include "components/prefs/testing_pref_service.h"
|
| #include "net/log/test_net_log.h"
|
| @@ -79,8 +79,8 @@ class DataReductionProxySettingsTestBase : public testing::Test {
|
| }
|
|
|
| base::MessageLoopForIO message_loop_;
|
| - scoped_ptr<DataReductionProxyTestContext> test_context_;
|
| - scoped_ptr<DataReductionProxySettings> settings_;
|
| + std::unique_ptr<DataReductionProxyTestContext> test_context_;
|
| + std::unique_ptr<DataReductionProxySettings> settings_;
|
| base::Time last_update_time_;
|
| std::map<std::string, std::string> synthetic_field_trials_;
|
| };
|
|
|