Index: components/update_client/component_unpacker.cc |
diff --git a/components/update_client/component_unpacker.cc b/components/update_client/component_unpacker.cc |
index 9dfd555b4745dd7da53260513a8e5622d415a299..b0fc94a355a5129e3898c71ee986a4412a308540 100644 |
--- a/components/update_client/component_unpacker.cc |
+++ b/components/update_client/component_unpacker.cc |
@@ -63,7 +63,7 @@ scoped_ptr<base::DictionaryValue> ReadManifest( |
return scoped_ptr<base::DictionaryValue>(); |
JSONFileValueDeserializer deserializer(manifest); |
std::string error; |
- scoped_ptr<base::Value> root(deserializer.Deserialize(NULL, &error)); |
+ scoped_ptr<base::Value> root = deserializer.Deserialize(NULL, &error); |
if (!root.get()) |
return scoped_ptr<base::DictionaryValue>(); |
if (!root->IsType(base::Value::TYPE_DICTIONARY)) |