| 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 f3713b2c461a7535ba833be172f1d17b596a16ba..7fb1ea65bf577ad6d7d9bdfda7747fcd8b02992d 100644
|
| --- a/chrome/browser/ui/webui/nacl_ui.cc
|
| +++ b/chrome/browser/ui/webui/nacl_ui.cc
|
| @@ -335,7 +335,7 @@ void CheckVersion(const base::FilePath& pnacl_path, std::string* version) {
|
| JSONFileValueDeserializer deserializer(pnacl_json_path);
|
| std::string error;
|
| std::unique_ptr<base::Value> root = deserializer.Deserialize(NULL, &error);
|
| - if (!root || !root->IsType(base::Value::TYPE_DICTIONARY))
|
| + if (!root || !root->IsType(base::Value::Type::DICTIONARY))
|
| return;
|
|
|
| // Now try to get the field. This may leave version empty if the
|
|
|