commit | fe117fd8dbddb6f93cbc89392a95a3b304054a30 | [log] [tgz] |
---|---|---|
author | David Bertoni <[email protected]> | Tue Oct 04 19:53:01 2022 |
committer | Chromium LUCI CQ <[email protected]> | Tue Oct 04 19:53:01 2022 |
tree | 189e83358a7891687b112b444d68fd27fb325369 | |
parent | 26b4886c02695b2486c909e4d95266a00e7c467d [diff] [blame] |
[Code Health] Convert Value::GetListDeprecated() to Value::GetList() in /chrome/browser/ui/webui. This CL was uploaded by git cl split. [email protected] Bug: 1303949 Change-Id: I402753492bdd5b3bb52b31919734a4aeb190509e Reviewed-on: https://chromium-review.googlesource.com/c/chromium/src/+/3929798 Commit-Queue: David Bertoni <[email protected]> Reviewed-by: Giovanni Ortuno Urquidi <[email protected]> Auto-Submit: David Bertoni <[email protected]> Cr-Commit-Position: refs/heads/main@{#1054890}
diff --git a/chrome/browser/ui/webui/help/help_utils_chromeos.cc b/chrome/browser/ui/webui/help/help_utils_chromeos.cc index 34aab85..2cccfb2 100644 --- a/chrome/browser/ui/webui/help/help_utils_chromeos.cc +++ b/chrome/browser/ui/webui/help/help_utils_chromeos.cc
@@ -32,7 +32,7 @@ if (!types_value) return default_update_over_cellular_allowed; CHECK(types_value->is_list()); - const auto& list = types_value->GetListDeprecated(); + const auto& list = types_value->GetList(); for (size_t i = 0; i < list.size(); ++i) { if (!list[i].is_int()) { LOG(WARNING) << "Can't parse connection type #" << i;