| Index: tools/json_schema_compiler/test/idl_schemas_unittest.cc
|
| diff --git a/tools/json_schema_compiler/test/idl_schemas_unittest.cc b/tools/json_schema_compiler/test/idl_schemas_unittest.cc
|
| index 07df4fb5ef93062efb1200532b8235e50a46db16..fe1ea04287ec552c39837dd773d8e601ba180d3f 100644
|
| --- a/tools/json_schema_compiler/test/idl_schemas_unittest.cc
|
| +++ b/tools/json_schema_compiler/test/idl_schemas_unittest.cc
|
| @@ -184,7 +184,7 @@ TEST(IdlCompiler, ObjectTypes) {
|
|
|
| // Test the BarType type.
|
| BarType b1;
|
| - b1.x.reset(new base::FundamentalValue(7));
|
| + b1.x.reset(new base::Value(7));
|
| std::unique_ptr<base::DictionaryValue> serialized_bar = b1.ToValue();
|
| BarType b2;
|
| EXPECT_TRUE(BarType::Populate(*serialized_bar.get(), &b2));
|
|
|