| Index: components/json_schema/json_schema_validator_unittest_base.cc
|
| diff --git a/components/json_schema/json_schema_validator_unittest_base.cc b/components/json_schema/json_schema_validator_unittest_base.cc
|
| index a1da991f9548b5ba4daccb8dda48862b3e0edaca..6442fb31d58e215bfe33fe5b1e74d84ff8622647 100644
|
| --- a/components/json_schema/json_schema_validator_unittest_base.cc
|
| +++ b/components/json_schema/json_schema_validator_unittest_base.cc
|
| @@ -58,12 +58,12 @@ base::Value* LoadValue(const std::string& filename, base::Value::Type type) {
|
|
|
| base::ListValue* LoadList(const std::string& filename) {
|
| return static_cast<base::ListValue*>(
|
| - LoadValue(filename, base::Value::TYPE_LIST));
|
| + LoadValue(filename, base::Value::Type::LIST));
|
| }
|
|
|
| base::DictionaryValue* LoadDictionary(const std::string& filename) {
|
| return static_cast<base::DictionaryValue*>(
|
| - LoadValue(filename, base::Value::TYPE_DICTIONARY));
|
| + LoadValue(filename, base::Value::Type::DICTIONARY));
|
| }
|
|
|
| } // namespace
|
|
|