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

Side by Side Diff: Source/devtools/protocol.json

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 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 1076 matching lines...) Expand 10 before | Expand all | Expand 10 after
1087 "properties": [ 1087 "properties": [
1088 { "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." }, 1088 { "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." },
1089 { "name": "proxyStart", "type": "number", "description": "St arted resolving proxy." }, 1089 { "name": "proxyStart", "type": "number", "description": "St arted resolving proxy." },
1090 { "name": "proxyEnd", "type": "number", "description": "Fini shed resolving proxy." }, 1090 { "name": "proxyEnd", "type": "number", "description": "Fini shed resolving proxy." },
1091 { "name": "dnsStart", "type": "number", "description": "Star ted DNS address resolve." }, 1091 { "name": "dnsStart", "type": "number", "description": "Star ted DNS address resolve." },
1092 { "name": "dnsEnd", "type": "number", "description": "Finish ed DNS address resolve." }, 1092 { "name": "dnsEnd", "type": "number", "description": "Finish ed DNS address resolve." },
1093 { "name": "connectStart", "type": "number", "description": " Started connecting to the remote host." }, 1093 { "name": "connectStart", "type": "number", "description": " Started connecting to the remote host." },
1094 { "name": "connectEnd", "type": "number", "description": "Co nnected to the remote host." }, 1094 { "name": "connectEnd", "type": "number", "description": "Co nnected to the remote host." },
1095 { "name": "sslStart", "type": "number", "description": "Star ted SSL handshake." }, 1095 { "name": "sslStart", "type": "number", "description": "Star ted SSL handshake." },
1096 { "name": "sslEnd", "type": "number", "description": "Finish ed SSL handshake." }, 1096 { "name": "sslEnd", "type": "number", "description": "Finish ed SSL handshake." },
1097 { "name": "serviceWorkerFetchStart", "type": "number", "desc ription": "Started fetching via ServiceWorker.", "hidden": true }, 1097 { "name": "workerStart", "type": "number", "description": "S tarted running ServiceWorker.", "hidden": true },
1098 { "name": "serviceWorkerFetchReady", "type": "number", "desc ription": "Prepared a ServiceWorker.", "hidden": true },
1099 { "name": "serviceWorkerFetchEnd", "type": "number", "descri ption": "Finished fetching via ServiceWorker.", "hidden": true },
1100 { "name": "sendStart", "type": "number", "description": "Sta rted sending request." }, 1098 { "name": "sendStart", "type": "number", "description": "Sta rted sending request." },
1101 { "name": "sendEnd", "type": "number", "description": "Finis hed sending request." }, 1099 { "name": "sendEnd", "type": "number", "description": "Finis hed sending request." },
1102 { "name": "receiveHeadersEnd", "type": "number", "descriptio n": "Finished receiving response headers." } 1100 { "name": "receiveHeadersEnd", "type": "number", "descriptio n": "Finished receiving response headers." }
1103 ] 1101 ]
1104 }, 1102 },
1105 { 1103 {
1106 "id": "Request", 1104 "id": "Request",
1107 "type": "object", 1105 "type": "object",
1108 "description": "HTTP request data.", 1106 "description": "HTTP request data.",
1109 "properties": [ 1107 "properties": [
(...skipping 3867 matching lines...) Expand 10 before | Expand all | Expand 10 after
4977 ], 4975 ],
4978 "returns": [ 4976 "returns": [
4979 { "name": "accessibilityNode", "$ref": "AXNode", "descriptio n": "The <code>Accessibility.AXNode</code> for this DOM node, if it exists.", "o ptional": true } 4977 { "name": "accessibilityNode", "$ref": "AXNode", "descriptio n": "The <code>Accessibility.AXNode</code> for this DOM node, if it exists.", "o ptional": true }
4980 ], 4978 ],
4981 "description": "Fetches the accessibility node for this DOM node , if it exists.", 4979 "description": "Fetches the accessibility node for this DOM node , if it exists.",
4982 "hidden": true 4980 "hidden": true
4983 } 4981 }
4984 ] 4982 ]
4985 }] 4983 }]
4986 } 4984 }
OLDNEW
« no previous file with comments | « Source/devtools/front_end/network/RequestTimingView.js ('k') | Source/platform/exported/WebURLLoadTiming.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698