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

Unified Diff: public/platform/WebURLLoadTiming.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: 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: public/platform/WebURLLoadTiming.h
diff --git a/public/platform/WebURLLoadTiming.h b/public/platform/WebURLLoadTiming.h
index 2061a09427eb5e21203510e50c7229f83046f84a..96ebbe38e4bfe177fe4d043f8ceac746a03555fb 100644
--- a/public/platform/WebURLLoadTiming.h
+++ b/public/platform/WebURLLoadTiming.h
@@ -78,6 +78,15 @@ public:
BLINK_PLATFORM_EXPORT double connectEnd() const;
BLINK_PLATFORM_EXPORT void setConnectEnd(double);
+ BLINK_PLATFORM_EXPORT double fetchStart() const;
horo 2014/08/28 06:58:26 "fetchStart/fetchEnd" is too general name. I think
shimazu 2014/08/29 02:00:47 Done.
+ BLINK_PLATFORM_EXPORT void setFetchStart(double);
+
+ BLINK_PLATFORM_EXPORT double launchServiceWorker() const;
+ BLINK_PLATFORM_EXPORT void setLaunchServiceWorker(double);
+
+ BLINK_PLATFORM_EXPORT double fetchEnd() const;
+ BLINK_PLATFORM_EXPORT void setFetchEnd(double);
+
BLINK_PLATFORM_EXPORT double sendStart() const;
BLINK_PLATFORM_EXPORT void setSendStart(double);

Powered by Google App Engine
This is Rietveld 408576698