| Index: components/update_client/component_unpacker.cc
|
| diff --git a/components/update_client/component_unpacker.cc b/components/update_client/component_unpacker.cc
|
| index 24e9b482c88c96be2a04a1cee3306cee8630c419..6dd555cc2ea988f8375104a40279af9a2cf5639e 100644
|
| --- a/components/update_client/component_unpacker.cc
|
| +++ b/components/update_client/component_unpacker.cc
|
| @@ -49,7 +49,7 @@ std::unique_ptr<base::DictionaryValue> ReadManifest(
|
| std::unique_ptr<base::Value> root = deserializer.Deserialize(NULL, &error);
|
| if (!root.get())
|
| return std::unique_ptr<base::DictionaryValue>();
|
| - if (!root->IsType(base::Value::TYPE_DICTIONARY))
|
| + if (!root->IsType(base::Value::Type::DICTIONARY))
|
| return std::unique_ptr<base::DictionaryValue>();
|
| return std::unique_ptr<base::DictionaryValue>(
|
| static_cast<base::DictionaryValue*>(root.release()));
|
|
|