| Index: tools/json_schema_compiler/test/objects_unittest.cc
|
| diff --git a/tools/json_schema_compiler/test/objects_unittest.cc b/tools/json_schema_compiler/test/objects_unittest.cc
|
| index e4f82bcb1bb0224063643dba9e9244965af7a0af..b00ea35497b8fbb99ec8b84362d4245afc25697a 100644
|
| --- a/tools/json_schema_compiler/test/objects_unittest.cc
|
| +++ b/tools/json_schema_compiler/test/objects_unittest.cc
|
| @@ -25,8 +25,8 @@ TEST(JsonSchemaCompilerObjectsTest, ObjectParamParamsCreate) {
|
| std::unique_ptr<base::DictionaryValue> info_value(
|
| new base::DictionaryValue());
|
| info_value->Set("strings", strings.release());
|
| - info_value->Set("integer", new base::FundamentalValue(5));
|
| - info_value->Set("boolean", new base::FundamentalValue(true));
|
| + info_value->Set("integer", new base::Value(5));
|
| + info_value->Set("boolean", new base::Value(true));
|
|
|
| std::unique_ptr<base::ListValue> params_value(new base::ListValue());
|
| params_value->Append(std::move(info_value));
|
| @@ -46,7 +46,7 @@ TEST(JsonSchemaCompilerObjectsTest, ObjectParamParamsCreate) {
|
| std::unique_ptr<base::DictionaryValue> info_value(
|
| new base::DictionaryValue());
|
| info_value->Set("strings", strings.release());
|
| - info_value->Set("integer", new base::FundamentalValue(5));
|
| + info_value->Set("integer", new base::Value(5));
|
|
|
| std::unique_ptr<base::ListValue> params_value(new base::ListValue());
|
| params_value->Append(std::move(info_value));
|
|
|