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; |