Index: chrome/browser/ui/webui/nacl_ui.cc |
diff --git a/chrome/browser/ui/webui/nacl_ui.cc b/chrome/browser/ui/webui/nacl_ui.cc |
index e129cfd561584f182f98b996af3d2617ba7bc529..3ee8381bbd563c83f99649b26eb93c29dae5b936 100644 |
--- a/chrome/browser/ui/webui/nacl_ui.cc |
+++ b/chrome/browser/ui/webui/nacl_ui.cc |
@@ -328,7 +328,7 @@ void CheckVersion(const base::FilePath& pnacl_path, std::string* version) { |
pnacl_path.AppendASCII("pnacl_public_pnacl_json"); |
JSONFileValueDeserializer deserializer(pnacl_json_path); |
std::string error; |
- scoped_ptr<base::Value> root(deserializer.Deserialize(NULL, &error)); |
+ scoped_ptr<base::Value> root = deserializer.Deserialize(NULL, &error); |
if (!root || !root->IsType(base::Value::TYPE_DICTIONARY)) |
return; |