diff options
Diffstat (limited to 'chromium/net/http/http_stream_parser.h')
-rw-r--r-- | chromium/net/http/http_stream_parser.h | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/chromium/net/http/http_stream_parser.h b/chromium/net/http/http_stream_parser.h index 2b5c2f0aeb7..0e773168272 100644 --- a/chromium/net/http/http_stream_parser.h +++ b/chromium/net/http/http_stream_parser.h @@ -95,6 +95,7 @@ class NET_EXPORT_PRIVATE HttpStreamParser { int64_t sent_bytes() const { return sent_bytes_; } base::TimeTicks response_start_time() { return response_start_time_; } + base::TimeTicks first_early_hints_time() { return first_early_hints_time_; } void GetSSLInfo(SSLInfo* ssl_info); @@ -241,6 +242,9 @@ class NET_EXPORT_PRIVATE HttpStreamParser { // parsed. base::TimeTicks response_start_time_; + // Time at which the first 103 Early Hints response is received. + base::TimeTicks first_early_hints_time_; + // Indicates the content length. If this value is less than zero // (and chunked_decoder_ is null), then we must read until the server // closes the connection. |