| Index: components/data_reduction_proxy/core/browser/data_reduction_proxy_prefs_unittest.cc
|
| diff --git a/components/data_reduction_proxy/core/browser/data_reduction_proxy_prefs_unittest.cc b/components/data_reduction_proxy/core/browser/data_reduction_proxy_prefs_unittest.cc
|
| index beabdfb174a6b1039f2b342b64d380d966083f10..85671575bb39d55218a40577673f3cc0e1c41b02 100644
|
| --- a/components/data_reduction_proxy/core/browser/data_reduction_proxy_prefs_unittest.cc
|
| +++ b/components/data_reduction_proxy/core/browser/data_reduction_proxy_prefs_unittest.cc
|
| @@ -39,8 +39,7 @@ class DataReductionProxyPrefsTest : public testing::Test {
|
| PrefService* pref_service) {
|
| ListPrefUpdate list(local_state_prefs(), pref_name);
|
| for (int64_t i = 0; i < 10L; ++i) {
|
| - list->Set(i, new base::StringValue(
|
| - base::Int64ToString(i + starting_value)));
|
| + list->Set(i, new base::Value(base::Int64ToString(i + starting_value)));
|
| }
|
| }
|
|
|
|
|