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

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: 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
Index: Source/devtools/protocol.json
diff --git a/Source/devtools/protocol.json b/Source/devtools/protocol.json
index 82fff8a17e02de6a376ada176334b94c7918fb70..96bc4c1db6db852c41812026aa670102eb441a8f 100644
--- a/Source/devtools/protocol.json
+++ b/Source/devtools/protocol.json
@@ -1099,6 +1099,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." },
pfeldman 2014/09/11 18:00:29 Please add hidden: true on these
shimazu 2014/09/12 03:11:39 Done. But I don't know the meaning of this "hidden
pfeldman 2014/09/18 09:36:34 hidden means that this is not a part of the public
+ { "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