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

Unified Diff: chrome/utility/importer/nss_decryptor.cc

Issue 2816513002: Revert of Change base::Value::ListStorage to std::vector<base::Value> (Closed)
Patch Set: 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
« no previous file with comments | « chrome/test/chromedriver/performance_logger.cc ('k') | chromecast/crash/linux/crash_testing_utils.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: chrome/utility/importer/nss_decryptor.cc
diff --git a/chrome/utility/importer/nss_decryptor.cc b/chrome/utility/importer/nss_decryptor.cc
index 3c45524ae50c991ccbeb79588faacd40ce8c3417..1698420e1e01b0d5d12882bb953f5b45b59f1500 100644
--- a/chrome/utility/importer/nss_decryptor.cc
+++ b/chrome/utility/importer/nss_decryptor.cc
@@ -306,7 +306,7 @@
if (password_dict->GetList("disabledHosts", &blacklist_domains)) {
for (const auto& value : *blacklist_domains) {
std::string disabled_host;
- if (!value.GetAsString(&disabled_host))
+ if (!value->GetAsString(&disabled_host))
continue;
forms->push_back(CreateBlacklistPasswordForm(disabled_host));
}
@@ -315,7 +315,7 @@
if (password_dict->GetList("logins", &password_list)) {
for (const auto& value : *password_list) {
const base::DictionaryValue* password_detail;
- if (!value.GetAsDictionary(&password_detail))
+ if (!value->GetAsDictionary(&password_detail))
continue;
FirefoxRawPasswordInfo raw_password_info;
« no previous file with comments | « chrome/test/chromedriver/performance_logger.cc ('k') | chromecast/crash/linux/crash_testing_utils.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698