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

Unified Diff: public/platform/WebURLLoadTiming.h

Issue 1159663002: Refactoring timing info for ServiceWorker controlled requests [1/3] (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: Created 5 years, 7 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/network/ResourceLoadTiming.h ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: public/platform/WebURLLoadTiming.h
diff --git a/public/platform/WebURLLoadTiming.h b/public/platform/WebURLLoadTiming.h
index 5d91af8bc838932e08560f57415953fc7300556b..892a768bf647e4116f77af375ba43729cbf5dea3 100644
--- a/public/platform/WebURLLoadTiming.h
+++ b/public/platform/WebURLLoadTiming.h
@@ -77,12 +77,18 @@ public:
BLINK_PLATFORM_EXPORT double connectEnd() const;
BLINK_PLATFORM_EXPORT void setConnectEnd(double);
+ BLINK_PLATFORM_EXPORT double workerStart() const;
+ BLINK_PLATFORM_EXPORT void setWorkerStart(double);
+
+ // TODO(ksakamoto): Deprecated, remove them. crbug.com/465640
BLINK_PLATFORM_EXPORT double serviceWorkerFetchStart() const;
BLINK_PLATFORM_EXPORT void setServiceWorkerFetchStart(double);
+ // TODO(ksakamoto): Deprecated, remove them. crbug.com/465640
BLINK_PLATFORM_EXPORT double serviceWorkerFetchReady() const;
BLINK_PLATFORM_EXPORT void setServiceWorkerFetchReady(double);
+ // TODO(ksakamoto): Deprecated, remove them. crbug.com/465640
BLINK_PLATFORM_EXPORT double serviceWorkerFetchEnd() const;
BLINK_PLATFORM_EXPORT void setServiceWorkerFetchEnd(double);
« no previous file with comments | « Source/platform/network/ResourceLoadTiming.h ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698