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

Unified Diff: Source/platform/network/ResourceLoadTiming.h

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: Rebase Created 6 years, 3 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 | « Source/platform/exported/WebURLLoadTiming.cpp ('k') | public/platform/WebURLLoadTiming.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: Source/platform/network/ResourceLoadTiming.h
diff --git a/Source/platform/network/ResourceLoadTiming.h b/Source/platform/network/ResourceLoadTiming.h
index e808926854a0088744795bd58ab8f6d5bda61e8d..12d232305a6323b3bbe583821c174aaf847cb62f 100644
--- a/Source/platform/network/ResourceLoadTiming.h
+++ b/Source/platform/network/ResourceLoadTiming.h
@@ -49,6 +49,9 @@ public:
timing->dnsEnd = dnsEnd;
timing->connectStart = connectStart;
timing->connectEnd = connectEnd;
+ timing->serviceWorkerFetchStart = serviceWorkerFetchStart;
+ timing->serviceWorkerFetchReady = serviceWorkerFetchReady;
+ timing->serviceWorkerFetchEnd = serviceWorkerFetchEnd;
timing->sendStart = sendStart;
timing->sendEnd = sendEnd;
timing->receiveHeadersEnd = receiveHeadersEnd;
@@ -66,6 +69,9 @@ public:
&& dnsEnd == other.dnsEnd
&& connectStart == other.connectStart
&& connectEnd == other.connectEnd
+ && serviceWorkerFetchStart == other.serviceWorkerFetchStart
+ && serviceWorkerFetchReady == other.serviceWorkerFetchReady
+ && serviceWorkerFetchEnd == other.serviceWorkerFetchEnd
&& sendStart == other.sendStart
&& sendEnd == other.sendEnd
&& receiveHeadersEnd == other.receiveHeadersEnd
@@ -90,6 +96,9 @@ public:
double dnsEnd;
double connectStart;
double connectEnd;
+ double serviceWorkerFetchStart;
+ double serviceWorkerFetchReady;
+ double serviceWorkerFetchEnd;
double sendStart;
double sendEnd;
double receiveHeadersEnd;
@@ -107,6 +116,9 @@ private:
, dnsEnd(0)
, connectStart(0)
, connectEnd(0)
+ , serviceWorkerFetchStart(0)
+ , serviceWorkerFetchReady(0)
+ , serviceWorkerFetchEnd(0)
, sendStart(0)
, sendEnd(0)
, receiveHeadersEnd(0)
« no previous file with comments | « Source/platform/exported/WebURLLoadTiming.cpp ('k') | public/platform/WebURLLoadTiming.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698