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

Unified Diff: chromeos/network/onc/onc_mapper.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 | « chromeos/network/onc/onc_certificate_importer_impl.cc ('k') | chromeos/network/onc/onc_merger.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: chromeos/network/onc/onc_mapper.cc
diff --git a/chromeos/network/onc/onc_mapper.cc b/chromeos/network/onc/onc_mapper.cc
index 16c1172c8dfb2e4af9e9dc6ae71cecded00a2d89..22f5766e935cfb471edd87c337dabcbef012b51a 100644
--- a/chromeos/network/onc/onc_mapper.cc
+++ b/chromeos/network/onc/onc_mapper.cc
@@ -120,9 +120,10 @@
int original_index = 0;
for (const auto& entry : onc_array) {
std::unique_ptr<base::Value> result_entry;
- result_entry =
- MapEntry(original_index, *array_signature.onc_array_entry_signature,
- entry, nested_error);
+ result_entry = MapEntry(original_index,
+ *array_signature.onc_array_entry_signature,
+ *entry,
+ nested_error);
if (result_entry.get() != NULL)
result_array->Append(std::move(result_entry));
else
« no previous file with comments | « chromeos/network/onc/onc_certificate_importer_impl.cc ('k') | chromeos/network/onc/onc_merger.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698