diff options
Diffstat (limited to 'net/http/http_response_info.cc')
-rw-r--r-- | net/http/http_response_info.cc | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/net/http/http_response_info.cc b/net/http/http_response_info.cc index e50a46f..a4d672d 100644 --- a/net/http/http_response_info.cc +++ b/net/http/http_response_info.cc @@ -84,6 +84,9 @@ enum { // This bit is set if the response info has connection info. RESPONSE_INFO_HAS_CONNECTION_INFO = 1 << 18, + // This bit is set if the request has http authentication. + RESPONSE_INFO_USE_HTTP_AUTHENTICATION = 1 << 19, + // TODO(darin): Add other bits to indicate alternate request methods. // For now, we don't support storing those. }; @@ -94,6 +97,7 @@ HttpResponseInfo::HttpResponseInfo() was_fetched_via_spdy(false), was_npn_negotiated(false), was_fetched_via_proxy(false), + did_use_http_auth(false), connection_info(CONNECTION_INFO_UNKNOWN) { } @@ -103,6 +107,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), + did_use_http_auth(rhs.did_use_http_auth), socket_address(rhs.socket_address), npn_negotiated_protocol(rhs.npn_negotiated_protocol), connection_info(rhs.connection_info), @@ -125,6 +130,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; + did_use_http_auth = rhs.did_use_http_auth; socket_address = rhs.socket_address; npn_negotiated_protocol = rhs.npn_negotiated_protocol; request_time = rhs.request_time; @@ -243,6 +249,8 @@ bool HttpResponseInfo::InitFromPickle(const Pickle& pickle, *response_truncated = (flags & RESPONSE_INFO_TRUNCATED) != 0; + did_use_http_auth = (flags & RESPONSE_INFO_USE_HTTP_AUTHENTICATION) != 0; + return true; } @@ -272,6 +280,8 @@ void HttpResponseInfo::Persist(Pickle* pickle, flags |= RESPONSE_INFO_WAS_PROXY; if (connection_info != CONNECTION_INFO_UNKNOWN) flags |= RESPONSE_INFO_HAS_CONNECTION_INFO; + if (did_use_http_auth) + flags |= RESPONSE_INFO_USE_HTTP_AUTHENTICATION; pickle->WriteInt(flags); pickle->WriteInt64(request_time.ToInternalValue()); |