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

Unified Diff: Source/devtools/protocol.json

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: Incorporate the reviews and rebase 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: Source/devtools/protocol.json
diff --git a/Source/devtools/protocol.json b/Source/devtools/protocol.json
index 8be685352b237971b12315274b39ef46676a0432..e58f7c4e8bbd2a0733f886b83b22d0e80ea43295 100644
--- a/Source/devtools/protocol.json
+++ b/Source/devtools/protocol.json
@@ -1097,6 +1097,9 @@
{ "name": "connectEnd", "type": "number", "description": "Connected to the remote host." },
{ "name": "sslStart", "type": "number", "description": "Started SSL handshake." },
{ "name": "sslEnd", "type": "number", "description": "Finished SSL handshake." },
+ { "name": "serviceWorkerFetchStart", "type": "number", "description": "Started fetching via ServiceWorker." },
+ { "name": "serviceWorkerFetchReady", "type": "number", "description": "Prepared a ServiceWorker." },
+ { "name": "serviceWorkerFetchEnd", "type": "number", "description": "Finished fetching via ServiceWorker." },
{ "name": "sendStart", "type": "number", "description": "Started sending request." },
{ "name": "sendEnd", "type": "number", "description": "Finished sending request." },
{ "name": "receiveHeadersEnd", "type": "number", "description": "Finished receiving response headers." }

Powered by Google App Engine
This is Rietveld 408576698