diff options
Diffstat (limited to 'net/http/http_response_info.h')
-rw-r--r-- | net/http/http_response_info.h | 9 |
1 files changed, 7 insertions, 2 deletions
diff --git a/net/http/http_response_info.h b/net/http/http_response_info.h index 201595c..a61c299 100644 --- a/net/http/http_response_info.h +++ b/net/http/http_response_info.h @@ -28,13 +28,18 @@ class HttpResponseInfo { // request_time may corresponds to a time "far" in the past. Note that // stale content (perhaps un-cacheable) may be fetched from cache subject to // the load flags specified on the request info. For example, this is done - // when a user presses the back button to re-render pages, or at startup, when - // reloading previously visited pages (without going over the network). + // when a user presses the back button to re-render pages, or at startup, + // when reloading previously visited pages (without going over the network). bool was_cached; // True if the request was fetched over a SPDY channel. bool was_fetched_via_spdy; + // True if the request was fetched via an explicit proxy. The proxy could + // be any type of proxy, HTTP or SOCKS. Note, we do not know if a + // transparent proxy may have been involved. + bool was_fetched_via_proxy; + // The time at which the request was made that resulted in this response. // For cached responses, this is the last time the cache entry was validated. base::Time request_time; |