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

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

Issue 515583005: Add ServiceWorker timing information on the popup panel in DevTools's Network tab (1/2) (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: Created 6 years, 4 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: Source/platform/exported/WebURLLoadTiming.cpp
diff --git a/Source/platform/exported/WebURLLoadTiming.cpp b/Source/platform/exported/WebURLLoadTiming.cpp
index 7192cc306401ba33c7534c6034414a8bb4a89366..9c68a7cd75a87800e8208a7f66c5bc030ce693e1 100644
--- a/Source/platform/exported/WebURLLoadTiming.cpp
+++ b/Source/platform/exported/WebURLLoadTiming.cpp
@@ -121,6 +121,36 @@ void WebURLLoadTiming::setConnectEnd(double end)
m_private->connectEnd = end;
}
+double WebURLLoadTiming::fetchStart() const
+{
+ return m_private->fetchStart;
+}
+
+void WebURLLoadTiming::setFetchStart(double start)
+{
+ m_private->fetchStart = start;
+}
+
+double WebURLLoadTiming::launchServiceWorker() const
+{
+ return m_private->launchServiceWorker;
+}
+
+void WebURLLoadTiming::setLaunchServiceWorker(double time)
+{
+ m_private->launchServiceWorker = time;
+}
+
+double WebURLLoadTiming::fetchEnd() const
+{
+ return m_private->fetchEnd;
+}
+
+void WebURLLoadTiming::setFetchEnd(double end)
+{
+ m_private->fetchEnd = end;
+}
+
double WebURLLoadTiming::sendStart() const
{
return m_private->sendStart;

Powered by Google App Engine
This is Rietveld 408576698