| Index: chrome/browser/chromeos/login/signed_settings_temp_storage.cc
|
| diff --git a/chrome/browser/chromeos/login/signed_settings_temp_storage.cc b/chrome/browser/chromeos/login/signed_settings_temp_storage.cc
|
| index 4182ff9c1633ca3542ee84e0aa22f9888b1c2c5c..95fc0cec292509cc44c1603737d3269cf3a26c26 100644
|
| --- a/chrome/browser/chromeos/login/signed_settings_temp_storage.cc
|
| +++ b/chrome/browser/chromeos/login/signed_settings_temp_storage.cc
|
| @@ -26,7 +26,7 @@ bool SignedSettingsTempStorage::Store(const std::string& name,
|
| DictionaryPrefUpdate temp_storage_update(
|
| local_state, prefs::kSignedSettingsTempStorage);
|
| temp_storage_update->SetWithoutPathExpansion(
|
| - name, Value::CreateStringValue(value));
|
| + name, base::StringValue::New(value));
|
| return true;
|
| }
|
| return false;
|
|
|