Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(330)

Unified Diff: net/base/load_timing_info.h

Issue 1828203005: Expose SPDY pushes in DevTools (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 4 years, 9 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
Index: net/base/load_timing_info.h
diff --git a/net/base/load_timing_info.h b/net/base/load_timing_info.h
index 8ee5a22ec14c8da3e74dc061d87d3c09f6b13053..7ee434b9d3c9a8faab1d0ca239a35889b7ad078f 100644
--- a/net/base/load_timing_info.h
+++ b/net/base/load_timing_info.h
@@ -136,6 +136,12 @@ struct NET_EXPORT LoadTimingInfo {
// The time at which the end of the HTTP headers were received.
base::TimeTicks receive_headers_end;
+
+ // In case the resource was proactively pushed by the server, these are
+ // the times that push started and ended. Note that push_end will be null
+ // if the request is still being pushed.
+ base::TimeTicks push_start;
+ base::TimeTicks push_end;
};
} // namespace net

Powered by Google App Engine
This is Rietveld 408576698