| Index: components/update_client/component_patcher.cc
|
| diff --git a/components/update_client/component_patcher.cc b/components/update_client/component_patcher.cc
|
| index cb18042908e573fe2749b5c5efe342085491554a..afafd8744e936df109f57771a94dc49d90f1609b 100644
|
| --- a/components/update_client/component_patcher.cc
|
| +++ b/components/update_client/component_patcher.cc
|
| @@ -34,7 +34,7 @@ base::ListValue* ReadCommands(const base::FilePath& unpack_path) {
|
| JSONFileValueDeserializer deserializer(commands);
|
| std::unique_ptr<base::Value> root = deserializer.Deserialize(NULL, NULL);
|
|
|
| - return (root.get() && root->IsType(base::Value::TYPE_LIST))
|
| + return (root.get() && root->IsType(base::Value::Type::LIST))
|
| ? static_cast<base::ListValue*>(root.release())
|
| : NULL;
|
| }
|
|
|