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

Unified Diff: remoting/test/host_info.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: remoting/test/host_info.cc
diff --git a/remoting/test/host_info.cc b/remoting/test/host_info.cc
index 5f5321f65ecf56e9d303e03b3d870eaab6c120b7..a696ffd214ab0dd8f8d55546d51f1be5e3ed32cf 100644
--- a/remoting/test/host_info.cc
+++ b/remoting/test/host_info.cc
@@ -22,7 +22,7 @@ bool HostInfo::ParseHostInfo(const base::DictionaryValue& host_info) {
if (!list_value->empty()) {
for (const auto& item : *list_value) {
std::string token_url_pattern;
- if (!item->GetAsString(&token_url_pattern)) {
+ if (!item.GetAsString(&token_url_pattern)) {
return false;
}
token_url_patterns.push_back(token_url_pattern);

Powered by Google App Engine
This is Rietveld 408576698