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

Unified Diff: chrome/browser/extensions/install_signer.cc

Issue 2740143002: Change base::Value::ListStorage to std::vector<base::Value> (Closed)
Patch Set: Fix Android Compilation Error Created 3 years, 9 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/extensions/install_signer.cc
diff --git a/chrome/browser/extensions/install_signer.cc b/chrome/browser/extensions/install_signer.cc
index 065a544b3c85799c3059c3f9dd9d312284f8de92..eb7dd01c2a18a9fc694fba96c72a72c00e41e7e5 100644
--- a/chrome/browser/extensions/install_signer.cc
+++ b/chrome/browser/extensions/install_signer.cc
@@ -145,7 +145,7 @@ bool GetExtensionIdSet(const base::DictionaryValue& dictionary,
i != id_list->end();
++i) {
std::string id;
- if (!(*i)->GetAsString(&id)) {
+ if (!i->GetAsString(&id)) {
return false;
}
ids->insert(id);

Powered by Google App Engine
This is Rietveld 408576698