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

Unified Diff: net/http/http_response_headers.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: net/http/http_response_headers.cc
diff --git a/net/http/http_response_headers.cc b/net/http/http_response_headers.cc
index d0b2fc18ced38245b5b8397e33a3fe22f4cee804..a0d3fa7b72eadca40ea55a41db38fd0a22b07692 100644
--- a/net/http/http_response_headers.cc
+++ b/net/http/http_response_headers.cc
@@ -1335,7 +1335,7 @@ bool HttpResponseHeaders::FromNetLogParam(
it != header_list->end();
++it) {
std::string header_line;
- if (!(*it)->GetAsString(&header_line))
+ if (!it->GetAsString(&header_line))
return false;
raw_headers.append(header_line);

Powered by Google App Engine
This is Rietveld 408576698