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

Unified Diff: chromeos/network/policy_applicator.cc

Issue 2740143002: Change base::Value::ListStorage to std::vector<base::Value> (Closed)
Patch Set: Comment Updates 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: chromeos/network/policy_applicator.cc
diff --git a/chromeos/network/policy_applicator.cc b/chromeos/network/policy_applicator.cc
index b2fec74d551c22b62f71f860370418d95f9fbd4e..66070bb4aac569cc09229cc0df73f57274b32fb1 100644
--- a/chromeos/network/policy_applicator.cc
+++ b/chromeos/network/policy_applicator.cc
@@ -96,7 +96,7 @@ void PolicyApplicator::GetProfilePropertiesCallback(
for (base::ListValue::const_iterator it = entries->begin();
it != entries->end(); ++it) {
std::string entry;
- (*it)->GetAsString(&entry);
+ it->GetAsString(&entry);
pending_get_entry_calls_.insert(entry);
DBusThreadManager::Get()->GetShillProfileClient()->GetEntry(

Powered by Google App Engine
This is Rietveld 408576698