| Index: rlz/chromeos/lib/rlz_value_store_chromeos.cc
|
| diff --git a/rlz/chromeos/lib/rlz_value_store_chromeos.cc b/rlz/chromeos/lib/rlz_value_store_chromeos.cc
|
| index 7fe5fdbb5a5968025bec3e52c849c213e3352932..0cd87af5fc4c193d09c35c0fb03c30a07a6be7ad 100644
|
| --- a/rlz/chromeos/lib/rlz_value_store_chromeos.cc
|
| +++ b/rlz/chromeos/lib/rlz_value_store_chromeos.cc
|
| @@ -141,7 +141,7 @@ bool RlzValueStoreChromeOS::AddProductEvent(Product product,
|
| const char* event_rlz) {
|
| DCHECK(CalledOnValidThread());
|
| return AddValueToList(GetKeyName(kProductEventKey, product),
|
| - base::Value::CreateStringValue(event_rlz));
|
| + new base::StringValue(event_rlz));
|
| }
|
|
|
| bool RlzValueStoreChromeOS::ReadProductEvents(
|
| @@ -178,7 +178,7 @@ bool RlzValueStoreChromeOS::AddStatefulEvent(Product product,
|
| const char* event_rlz) {
|
| DCHECK(CalledOnValidThread());
|
| return AddValueToList(GetKeyName(kStatefulEventKey, product),
|
| - base::Value::CreateStringValue(event_rlz));
|
| + new base::StringValue(event_rlz));
|
| }
|
|
|
| bool RlzValueStoreChromeOS::IsStatefulEvent(Product product,
|
|
|