| Index: chrome/browser/prefs/pref_hash_calculator_unittest.cc
|
| diff --git a/chrome/browser/prefs/pref_hash_calculator_unittest.cc b/chrome/browser/prefs/pref_hash_calculator_unittest.cc
|
| index 356cc56a7866f19801ce033b038d70d8dde979fc..34971ad6a4c38e9262ee1001982a0fec850205d3 100644
|
| --- a/chrome/browser/prefs/pref_hash_calculator_unittest.cc
|
| +++ b/chrome/browser/prefs/pref_hash_calculator_unittest.cc
|
| @@ -86,8 +86,8 @@ TEST(PrefHashCalculatorTest, CatchHashChanges) {
|
| base::Value::CreateIntegerValue(1234567890));
|
| scoped_ptr<base::Value> double_value(
|
| new base::FundamentalValue(123.0987654321));
|
| - scoped_ptr<base::Value> string_value(base::Value::CreateStringValue(
|
| - "testing with special chars:\n<>{}:^^@#$\\/"));
|
| + scoped_ptr<base::Value> string_value(
|
| + new base::StringValue("testing with special chars:\n<>{}:^^@#$\\/"));
|
|
|
| // For legacy reasons, we have to support pruning of empty lists/dictionaries
|
| // and nested empty ists/dicts in the hash generation algorithm.
|
|
|