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

Unified Diff: third_party/WebKit/Source/platform/exported/WebURLLoadTiming.cpp

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: third_party/WebKit/Source/platform/exported/WebURLLoadTiming.cpp
diff --git a/third_party/WebKit/Source/platform/exported/WebURLLoadTiming.cpp b/third_party/WebKit/Source/platform/exported/WebURLLoadTiming.cpp
index ac2345e17d46a40dbce2d5afa3fb35d4918db144..c74674cfb078eb111c0c0be441378ffc335be91b 100644
--- a/third_party/WebKit/Source/platform/exported/WebURLLoadTiming.cpp
+++ b/third_party/WebKit/Source/platform/exported/WebURLLoadTiming.cpp
@@ -190,6 +190,26 @@ void WebURLLoadTiming::setSSLEnd(double end)
m_private->setSslEnd(end);
}
+double WebURLLoadTiming::pushStart() const
+{
+ return m_private->pushStart();
+}
+
+void WebURLLoadTiming::setPushStart(double start)
+{
+ m_private->setPushStart(start);
+}
+
+double WebURLLoadTiming::pushEnd() const
+{
+ return m_private->pushEnd();
+}
+
+void WebURLLoadTiming::setPushEnd(double end)
+{
+ m_private->setPushEnd(end);
+}
+
WebURLLoadTiming::WebURLLoadTiming(const PassRefPtr<ResourceLoadTiming>& value)
: m_private(value)
{

Powered by Google App Engine
This is Rietveld 408576698