diff options
Diffstat (limited to 'net/http/http_response_info.cc')
-rw-r--r-- | net/http/http_response_info.cc | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/net/http/http_response_info.cc b/net/http/http_response_info.cc index cf6a363..873d017 100644 --- a/net/http/http_response_info.cc +++ b/net/http/http_response_info.cc @@ -38,6 +38,9 @@ enum { // This bit is set if the request was cancelled before completion. RESPONSE_INFO_TRUNCATED = 1 << 12, + // This bit is set if the response was received via SPDY. + RESPONSE_INFO_WAS_SPDY = 1 << 13, + // TODO(darin): Add other bits to indicate alternate request methods. // For now, we don't support storing those. }; @@ -103,6 +106,8 @@ bool HttpResponseInfo::InitFromPickle(const Pickle& pickle, return false; } + was_fetched_via_spdy = (flags & RESPONSE_INFO_WAS_SPDY) != 0; + *response_truncated = (flags & RESPONSE_INFO_TRUNCATED) ? true : false; return true; @@ -122,6 +127,8 @@ void HttpResponseInfo::Persist(Pickle* pickle, flags |= RESPONSE_INFO_HAS_VARY_DATA; if (response_truncated) flags |= RESPONSE_INFO_TRUNCATED; + if (was_fetched_via_spdy) + flags |= RESPONSE_INFO_WAS_SPDY; pickle->WriteInt(flags); pickle->WriteInt64(request_time.ToInternalValue()); |