| Index: net/http/http_response_info.cc
|
| diff --git a/net/http/http_response_info.cc b/net/http/http_response_info.cc
|
| index ba118ac65bdb74480ad8914ab1cd922f444ae5d9..ba859e4f0ee420c82ae379216fd578736332a6a1 100644
|
| --- a/net/http/http_response_info.cc
|
| +++ b/net/http/http_response_info.cc
|
| @@ -106,6 +106,7 @@ HttpResponseInfo::HttpResponseInfo()
|
| was_fetched_via_proxy(false),
|
| did_use_http_auth(false),
|
| unused_since_prefetch(false),
|
| + async_revalidation_required(false),
|
| connection_info(CONNECTION_INFO_UNKNOWN) {
|
| }
|
|
|
| @@ -119,6 +120,7 @@ HttpResponseInfo::HttpResponseInfo(const HttpResponseInfo& rhs)
|
| proxy_server(rhs.proxy_server),
|
| did_use_http_auth(rhs.did_use_http_auth),
|
| unused_since_prefetch(rhs.unused_since_prefetch),
|
| + async_revalidation_required(rhs.async_revalidation_required),
|
| socket_address(rhs.socket_address),
|
| npn_negotiated_protocol(rhs.npn_negotiated_protocol),
|
| connection_info(rhs.connection_info),
|
| @@ -145,6 +147,7 @@ HttpResponseInfo& HttpResponseInfo::operator=(const HttpResponseInfo& rhs) {
|
| was_fetched_via_proxy = rhs.was_fetched_via_proxy;
|
| did_use_http_auth = rhs.did_use_http_auth;
|
| unused_since_prefetch = rhs.unused_since_prefetch;
|
| + async_revalidation_required = rhs.async_revalidation_required;
|
| socket_address = rhs.socket_address;
|
| npn_negotiated_protocol = rhs.npn_negotiated_protocol;
|
| connection_info = rhs.connection_info;
|
|
|