summaryrefslogtreecommitdiff
path: root/chromium/net/http/http_stream_parser.h
diff options
context:
space:
mode:
authorAllan Sandfeld Jensen <allan.jensen@qt.io>2020-10-12 14:27:29 +0200
committerAllan Sandfeld Jensen <allan.jensen@qt.io>2020-10-13 09:35:20 +0000
commitc30a6232df03e1efbd9f3b226777b07e087a1122 (patch)
treee992f45784689f373bcc38d1b79a239ebe17ee23 /chromium/net/http/http_stream_parser.h
parent7b5b123ac58f58ffde0f4f6e488bcd09aa4decd3 (diff)
downloadqtwebengine-chromium-85-based.tar.gz
BASELINE: Update Chromium to 85.0.4183.14085-based
Change-Id: Iaa42f4680837c57725b1344f108c0196741f6057 Reviewed-by: Allan Sandfeld Jensen <allan.jensen@qt.io>
Diffstat (limited to 'chromium/net/http/http_stream_parser.h')
-rw-r--r--chromium/net/http/http_stream_parser.h4
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.