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

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: 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 c231dfabfb6899ca3d198d121453278bdc58230a..2f63dc4860c496a862c2d4ccd1a5497fe30ab25f 100644
--- a/Source/devtools/protocol.json
+++ b/Source/devtools/protocol.json
@@ -1087,6 +1087,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": "fetchStart", "type": "number", "description": "Started fetching via ServiceWorker." },
+ { "name": "launchServiceWorker", "type": "number", "description": "Launched a ServiceWorker thread." },
+ { "name": "fetchEnd", "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