Index: net/http/http_response_info.cc |
diff --git a/net/http/http_response_info.cc b/net/http/http_response_info.cc |
index e50a46f35354ca5b39d481021a22b1885fb4ae21..e0cd2115e10737d469b47b625fcc95bf431292c2 100644 |
--- a/net/http/http_response_info.cc |
+++ b/net/http/http_response_info.cc |
@@ -94,6 +94,7 @@ HttpResponseInfo::HttpResponseInfo() |
was_fetched_via_spdy(false), |
was_npn_negotiated(false), |
was_fetched_via_proxy(false), |
+ request_has_auth(false), |
connection_info(CONNECTION_INFO_UNKNOWN) { |
} |
@@ -103,6 +104,7 @@ HttpResponseInfo::HttpResponseInfo(const HttpResponseInfo& rhs) |
was_fetched_via_spdy(rhs.was_fetched_via_spdy), |
was_npn_negotiated(rhs.was_npn_negotiated), |
was_fetched_via_proxy(rhs.was_fetched_via_proxy), |
+ request_has_auth(rhs.request_has_auth), |
socket_address(rhs.socket_address), |
npn_negotiated_protocol(rhs.npn_negotiated_protocol), |
connection_info(rhs.connection_info), |
@@ -125,6 +127,7 @@ HttpResponseInfo& HttpResponseInfo::operator=(const HttpResponseInfo& rhs) { |
was_fetched_via_spdy = rhs.was_fetched_via_spdy; |
was_npn_negotiated = rhs.was_npn_negotiated; |
was_fetched_via_proxy = rhs.was_fetched_via_proxy; |
+ request_has_auth = rhs.request_has_auth; |
socket_address = rhs.socket_address; |
npn_negotiated_protocol = rhs.npn_negotiated_protocol; |
request_time = rhs.request_time; |