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

Side by Side 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 unified diff | Download patch
OLDNEW
1 { 1 {
2 "version": { "major": "1", "minor": "1" }, 2 "version": { "major": "1", "minor": "1" },
3 "domains": [{ 3 "domains": [{
4 "domain": "Inspector", 4 "domain": "Inspector",
5 "hidden": true, 5 "hidden": true,
6 "types": [], 6 "types": [],
7 "commands": [ 7 "commands": [
8 { 8 {
9 "name": "enable", 9 "name": "enable",
10 "description": "Enables inspector domain notifications." 10 "description": "Enables inspector domain notifications."
(...skipping 1096 matching lines...) Expand 10 before | Expand all | Expand 10 after
1107 "properties": [ 1107 "properties": [
1108 { "name": "requestTime", "type": "number", "description": "T iming's requestTime is a baseline in seconds, while the other numbers are ticks in milliseconds relatively to this requestTime." }, 1108 { "name": "requestTime", "type": "number", "description": "T iming's requestTime is a baseline in seconds, while the other numbers are ticks in milliseconds relatively to this requestTime." },
1109 { "name": "proxyStart", "type": "number", "description": "St arted resolving proxy." }, 1109 { "name": "proxyStart", "type": "number", "description": "St arted resolving proxy." },
1110 { "name": "proxyEnd", "type": "number", "description": "Fini shed resolving proxy." }, 1110 { "name": "proxyEnd", "type": "number", "description": "Fini shed resolving proxy." },
1111 { "name": "dnsStart", "type": "number", "description": "Star ted DNS address resolve." }, 1111 { "name": "dnsStart", "type": "number", "description": "Star ted DNS address resolve." },
1112 { "name": "dnsEnd", "type": "number", "description": "Finish ed DNS address resolve." }, 1112 { "name": "dnsEnd", "type": "number", "description": "Finish ed DNS address resolve." },
1113 { "name": "connectStart", "type": "number", "description": " Started connecting to the remote host." }, 1113 { "name": "connectStart", "type": "number", "description": " Started connecting to the remote host." },
1114 { "name": "connectEnd", "type": "number", "description": "Co nnected to the remote host." }, 1114 { "name": "connectEnd", "type": "number", "description": "Co nnected to the remote host." },
1115 { "name": "sslStart", "type": "number", "description": "Star ted SSL handshake." }, 1115 { "name": "sslStart", "type": "number", "description": "Star ted SSL handshake." },
1116 { "name": "sslEnd", "type": "number", "description": "Finish ed SSL handshake." }, 1116 { "name": "sslEnd", "type": "number", "description": "Finish ed SSL handshake." },
1117 { "name": "serviceWorkerFetchStart", "type": "number", "desc ription": "Started fetching via ServiceWorker.", "hidden": true },
1118 { "name": "serviceWorkerFetchReady", "type": "number", "desc ription": "Prepared a ServiceWorker.", "hidden": true },
1119 { "name": "serviceWorkerFetchEnd", "type": "number", "descri ption": "Finished fetching via ServiceWorker.", "hidden": true },
1117 { "name": "sendStart", "type": "number", "description": "Sta rted sending request." }, 1120 { "name": "sendStart", "type": "number", "description": "Sta rted sending request." },
1118 { "name": "sendEnd", "type": "number", "description": "Finis hed sending request." }, 1121 { "name": "sendEnd", "type": "number", "description": "Finis hed sending request." },
1119 { "name": "receiveHeadersEnd", "type": "number", "descriptio n": "Finished receiving response headers." } 1122 { "name": "receiveHeadersEnd", "type": "number", "descriptio n": "Finished receiving response headers." }
1120 ] 1123 ]
1121 }, 1124 },
1122 { 1125 {
1123 "id": "Request", 1126 "id": "Request",
1124 "type": "object", 1127 "type": "object",
1125 "description": "HTTP request data.", 1128 "description": "HTTP request data.",
1126 "properties": [ 1129 "properties": [
(...skipping 3283 matching lines...) Expand 10 before | Expand all | Expand 10 after
4410 { 4413 {
4411 "name": "dataAvailable", 4414 "name": "dataAvailable",
4412 "parameters": [ 4415 "parameters": [
4413 {"name": "value", "type": "array", "items": { "$ref": "Power Event" }, "description": "List of power events." } 4416 {"name": "value", "type": "array", "items": { "$ref": "Power Event" }, "description": "List of power events." }
4414 ], 4417 ],
4415 "handlers": ["browser", "frontend"] 4418 "handlers": ["browser", "frontend"]
4416 } 4419 }
4417 ] 4420 ]
4418 }] 4421 }]
4419 } 4422 }
OLDNEW
« no previous file with comments | « Source/devtools/front_end/sdk/NetworkManager.js ('k') | Source/platform/exported/WebURLLoadTiming.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698