Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(127)

Unified Diff: chrome/browser/chromeos/login/easy_unlock/easy_unlock_key_manager.cc

Issue 2740143002: Change base::Value::ListStorage to std::vector<base::Value> (Closed)
Patch Set: Rebase Created 3 years, 8 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
Index: chrome/browser/chromeos/login/easy_unlock/easy_unlock_key_manager.cc
diff --git a/chrome/browser/chromeos/login/easy_unlock/easy_unlock_key_manager.cc b/chrome/browser/chromeos/login/easy_unlock/easy_unlock_key_manager.cc
index f2f7d365c4e944aa1465cf6d3fe8343249b9ffec..94a5e8957b10df57231bcdc59fea14c2f896dc16 100644
--- a/chrome/browser/chromeos/login/easy_unlock/easy_unlock_key_manager.cc
+++ b/chrome/browser/chromeos/login/easy_unlock/easy_unlock_key_manager.cc
@@ -184,7 +184,7 @@ bool EasyUnlockKeyManager::RemoteDeviceListToDeviceDataList(
it != device_list.end();
++it) {
const base::DictionaryValue* dict;
- if (!(*it)->GetAsDictionary(&dict) || !dict)
+ if (!it->GetAsDictionary(&dict) || !dict)
return false;
EasyUnlockDeviceKeyData data;

Powered by Google App Engine
This is Rietveld 408576698