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

Unified Diff: headless/public/internal/value_conversions.h

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 | « google_apis/gaia/gaia_auth_fetcher.cc ('k') | ios/chrome/browser/autofill/autofill_agent.mm » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: headless/public/internal/value_conversions.h
diff --git a/headless/public/internal/value_conversions.h b/headless/public/internal/value_conversions.h
index f2ded264939175d8114f5229eec150329f5c307c..5622fb84773506f0a628a0709fc1d38b12900ea2 100644
--- a/headless/public/internal/value_conversions.h
+++ b/headless/public/internal/value_conversions.h
@@ -151,7 +151,7 @@
}
errors->Push();
for (const auto& item : *list)
- result.push_back(FromValue<T>::Parse(item, errors));
+ result.push_back(FromValue<T>::Parse(*item, errors));
errors->Pop();
return result;
}
« no previous file with comments | « google_apis/gaia/gaia_auth_fetcher.cc ('k') | ios/chrome/browser/autofill/autofill_agent.mm » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698