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

Unified Diff: chrome/browser/ui/webui/settings/certificates_handler.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/ui/webui/settings/certificates_handler.cc
diff --git a/chrome/browser/ui/webui/settings/certificates_handler.cc b/chrome/browser/ui/webui/settings/certificates_handler.cc
index 9930c7b9bc9ca67a79b9efd091f6193807261e89..d80b14b987706f3e31fc202c966e237012594c7c 100644
--- a/chrome/browser/ui/webui/settings/certificates_handler.cc
+++ b/chrome/browser/ui/webui/settings/certificates_handler.cc
@@ -85,15 +85,14 @@ struct DictionaryIdComparator {
explicit DictionaryIdComparator(icu::Collator* collator)
: collator_(collator) {}
- bool operator()(const std::unique_ptr<base::Value>& a,
- const std::unique_ptr<base::Value>& b) const {
- DCHECK(a->GetType() == base::Value::Type::DICTIONARY);
- DCHECK(b->GetType() == base::Value::Type::DICTIONARY);
+ bool operator()(const base::Value& a, const base::Value& b) const {
+ DCHECK(a.GetType() == base::Value::Type::DICTIONARY);
+ DCHECK(b.GetType() == base::Value::Type::DICTIONARY);
const base::DictionaryValue* a_dict;
- bool a_is_dictionary = a->GetAsDictionary(&a_dict);
+ bool a_is_dictionary = a.GetAsDictionary(&a_dict);
DCHECK(a_is_dictionary);
const base::DictionaryValue* b_dict;
- bool b_is_dictionary = b->GetAsDictionary(&b_dict);
+ bool b_is_dictionary = b.GetAsDictionary(&b_dict);
DCHECK(b_is_dictionary);
base::string16 a_str;
base::string16 b_str;
« no previous file with comments | « chrome/browser/ui/webui/options/language_options_handler_common.cc ('k') | chrome/browser/ui/webui/site_settings_helper.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698