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

Unified Diff: chromeos/network/prohibited_technologies_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
« no previous file with comments | « chromeos/network/policy_applicator.cc ('k') | chromeos/network/shill_property_handler.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: chromeos/network/prohibited_technologies_handler.cc
diff --git a/chromeos/network/prohibited_technologies_handler.cc b/chromeos/network/prohibited_technologies_handler.cc
index 97bdec9d2b1612722a3a23f239a568313957c852..69bc5039ca1d67b5a7e6ed24d234f0d9a7168d65 100644
--- a/chromeos/network/prohibited_technologies_handler.cc
+++ b/chromeos/network/prohibited_technologies_handler.cc
@@ -65,7 +65,7 @@ void ProhibitedTechnologiesHandler::SetProhibitedTechnologies(
prohibited_technologies_.clear();
for (const auto& item : *prohibited_list) {
std::string prohibited_technology;
- bool item_is_string = item->GetAsString(&prohibited_technology);
+ bool item_is_string = item.GetAsString(&prohibited_technology);
DCHECK(item_is_string);
std::string translated_tech =
network_util::TranslateONCTypeToShill(prohibited_technology);
« no previous file with comments | « chromeos/network/policy_applicator.cc ('k') | chromeos/network/shill_property_handler.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698