Index: content/child/weburlresponse_extradata_impl.h |
diff --git a/content/child/weburlresponse_extradata_impl.h b/content/child/weburlresponse_extradata_impl.h |
index 719b0693c4c05d9e124ec2cf272f3e0df13e1c09..1c388bde6dea2f1439ceed3e47f88b9af54aab79 100644 |
--- a/content/child/weburlresponse_extradata_impl.h |
+++ b/content/child/weburlresponse_extradata_impl.h |
@@ -87,6 +87,9 @@ class CONTENT_EXPORT WebURLResponseExtraDataImpl : |
is_ftp_directory_listing_ = is_ftp_directory_listing; |
} |
+ bool is_lofi() const { return is_lofi_; } |
+ void set_is_lofi(bool is_lofi) { is_lofi_ = is_lofi; } |
+ |
private: |
std::string npn_negotiated_protocol_; |
bool is_ftp_directory_listing_; |
@@ -96,6 +99,7 @@ class CONTENT_EXPORT WebURLResponseExtraDataImpl : |
bool was_npn_negotiated_; |
net::HttpResponseInfo::ConnectionInfo connection_info_; |
bool was_alternate_protocol_available_; |
+ bool is_lofi_; |
DISALLOW_COPY_AND_ASSIGN(WebURLResponseExtraDataImpl); |
}; |