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

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

Issue 1149273003: Add workerReady timing for ServiceWorker controlled requests [1/3] (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: Created 5 years, 6 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
« no previous file with comments | « no previous file | Source/platform/network/ResourceLoadTiming.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: Source/platform/exported/WebURLLoadTiming.cpp
diff --git a/Source/platform/exported/WebURLLoadTiming.cpp b/Source/platform/exported/WebURLLoadTiming.cpp
index 2a2226258fc3e113f0bee86690dc8b263cb80e2f..0f44cdc91859914aea7b13b8e22f76403dff743c 100644
--- a/Source/platform/exported/WebURLLoadTiming.cpp
+++ b/Source/platform/exported/WebURLLoadTiming.cpp
@@ -131,6 +131,16 @@ void WebURLLoadTiming::setWorkerStart(double start)
m_private->setWorkerStart(start);
}
+double WebURLLoadTiming::workerReady() const
+{
+ return m_private->workerReady();
+}
+
+void WebURLLoadTiming::setWorkerReady(double ready)
+{
+ m_private->setWorkerReady(ready);
+}
+
double WebURLLoadTiming::sendStart() const
{
return m_private->sendStart();
« no previous file with comments | « no previous file | Source/platform/network/ResourceLoadTiming.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698