| Index: chrome/browser/chromeos/mobile/mobile_activator.cc
|
| diff --git a/chrome/browser/chromeos/mobile/mobile_activator.cc b/chrome/browser/chromeos/mobile/mobile_activator.cc
|
| index c3b1e1bbf066bc4a2184575f46106e49a503d686..a53ed1e728572215581e08e915e72acb11ce1249 100644
|
| --- a/chrome/browser/chromeos/mobile/mobile_activator.cc
|
| +++ b/chrome/browser/chromeos/mobile/mobile_activator.cc
|
| @@ -131,7 +131,7 @@ bool CellularConfigDocument::LoadFromFile(const base::FilePath& config_path) {
|
| std::unique_ptr<base::Value> root =
|
| base::JSONReader::Read(config, base::JSON_ALLOW_TRAILING_COMMAS);
|
| DCHECK(root.get() != NULL);
|
| - if (!root.get() || root->GetType() != base::Value::TYPE_DICTIONARY) {
|
| + if (!root.get() || root->GetType() != base::Value::Type::DICTIONARY) {
|
| LOG(WARNING) << "Bad cellular config file";
|
| return false;
|
| }
|
|
|