| Index: tools/ipc_fuzzer/fuzzer/fuzzer.cc
|
| diff --git a/tools/ipc_fuzzer/fuzzer/fuzzer.cc b/tools/ipc_fuzzer/fuzzer/fuzzer.cc
|
| index 5dc601209e93bf105c72e02ac1bd1bd3efc82298..8efc54741f683d4e952186f2b7c1ff265d038f82 100644
|
| --- a/tools/ipc_fuzzer/fuzzer/fuzzer.cc
|
| +++ b/tools/ipc_fuzzer/fuzzer/fuzzer.cc
|
| @@ -509,21 +509,21 @@ struct FuzzTraits<base::ListValue> {
|
| bool tmp;
|
| p->GetBoolean(index, &tmp);
|
| fuzzer->FuzzBool(&tmp);
|
| - p->Set(index, new base::FundamentalValue(tmp));
|
| + p->Set(index, new base::Value(tmp));
|
| break;
|
| }
|
| case base::Value::Type::INTEGER: {
|
| int tmp;
|
| p->GetInteger(index, &tmp);
|
| fuzzer->FuzzInt(&tmp);
|
| - p->Set(index, new base::FundamentalValue(tmp));
|
| + p->Set(index, new base::Value(tmp));
|
| break;
|
| }
|
| case base::Value::Type::DOUBLE: {
|
| double tmp;
|
| p->GetDouble(index, &tmp);
|
| fuzzer->FuzzDouble(&tmp);
|
| - p->Set(index, new base::FundamentalValue(tmp));
|
| + p->Set(index, new base::Value(tmp));
|
| break;
|
| }
|
| case base::Value::Type::STRING: {
|
| @@ -581,19 +581,19 @@ struct FuzzTraits<base::DictionaryValue> {
|
| case base::Value::Type::BOOLEAN: {
|
| bool tmp;
|
| fuzzer->FuzzBool(&tmp);
|
| - p->SetWithoutPathExpansion(property, new base::FundamentalValue(tmp));
|
| + p->SetWithoutPathExpansion(property, new base::Value(tmp));
|
| break;
|
| }
|
| case base::Value::Type::INTEGER: {
|
| int tmp;
|
| fuzzer->FuzzInt(&tmp);
|
| - p->SetWithoutPathExpansion(property, new base::FundamentalValue(tmp));
|
| + p->SetWithoutPathExpansion(property, new base::Value(tmp));
|
| break;
|
| }
|
| case base::Value::Type::DOUBLE: {
|
| double tmp;
|
| fuzzer->FuzzDouble(&tmp);
|
| - p->SetWithoutPathExpansion(property, new base::FundamentalValue(tmp));
|
| + p->SetWithoutPathExpansion(property, new base::Value(tmp));
|
| break;
|
| }
|
| case base::Value::Type::STRING: {
|
|
|