Index: components/update_client/component_patcher.cc |
diff --git a/components/update_client/component_patcher.cc b/components/update_client/component_patcher.cc |
index 052588279030212cf90274dce54af603b3dbc16c..9105fda0849dcecb71fd7ccb8dde53bf36201991 100644 |
--- a/components/update_client/component_patcher.cc |
+++ b/components/update_client/component_patcher.cc |
@@ -31,7 +31,7 @@ base::ListValue* ReadCommands(const base::FilePath& unpack_path) { |
return NULL; |
JSONFileValueDeserializer deserializer(commands); |
- scoped_ptr<base::Value> root(deserializer.Deserialize(NULL, NULL)); |
+ scoped_ptr<base::Value> root = deserializer.Deserialize(NULL, NULL); |
return (root.get() && root->IsType(base::Value::TYPE_LIST)) |
? static_cast<base::ListValue*>(root.release()) |