Index: chrome/browser/component_updater/pnacl_component_installer.cc |
diff --git a/chrome/browser/component_updater/pnacl_component_installer.cc b/chrome/browser/component_updater/pnacl_component_installer.cc |
index 1198d60293c92bb4cca8450f919fc5dc5a8c2ecb..f10940ba5ecfadd3874bb7377743a49b976ce403 100644 |
--- a/chrome/browser/component_updater/pnacl_component_installer.cc |
+++ b/chrome/browser/component_updater/pnacl_component_installer.cc |
@@ -127,7 +127,7 @@ bool GetLatestPnaclDirectory(const scoped_refptr<PnaclComponentInstaller>& pci, |
base::DictionaryValue* ReadJSONManifest(const base::FilePath& manifest_path) { |
JSONFileValueDeserializer deserializer(manifest_path); |
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 NULL; |
if (!root->IsType(base::Value::TYPE_DICTIONARY)) |