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

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

Issue 1039983003: [DevTools] Introduce ServiceWorkerVersion.ScriptLastModified/ScriptResponseTime (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: Add descriptions Created 5 years, 8 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
« no previous file with comments | « Source/devtools/front_end/sdk/ServiceWorkerManager.js ('k') | no next file » | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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 4057 matching lines...) Expand 10 before | Expand all | Expand 10 after
4068 { 4068 {
4069 "id": "ServiceWorkerVersion", 4069 "id": "ServiceWorkerVersion",
4070 "type": "object", 4070 "type": "object",
4071 "description": "ServiceWorker version.", 4071 "description": "ServiceWorker version.",
4072 "properties": [ 4072 "properties": [
4073 { "name": "versionId", "type": "string" }, 4073 { "name": "versionId", "type": "string" },
4074 { "name": "registrationId", "type": "string" }, 4074 { "name": "registrationId", "type": "string" },
4075 { "name": "scriptURL", "type": "string" }, 4075 { "name": "scriptURL", "type": "string" },
4076 { "name": "runningStatus", "$ref": "ServiceWorkerVersionRunn ingStatus" }, 4076 { "name": "runningStatus", "$ref": "ServiceWorkerVersionRunn ingStatus" },
4077 { "name": "status", "$ref": "ServiceWorkerVersionStatus" }, 4077 { "name": "status", "$ref": "ServiceWorkerVersionStatus" },
4078 { "name": "updateTime", "type": "number", "optional": true} 4078 { "name": "scriptLastModified", "type": "number", "optional" : true, "description": "The Last-Modified header value of the main script." },
4079 { "name": "scriptResponseTime", "type": "number", "optional" : true, "description": "The time at which the response headers of the main scrip t were received from the server. For cached script it is the last time the cach e entry was validated." }
4079 ] 4080 ]
4080 }, 4081 },
4081 { 4082 {
4082 "id": "ServiceWorkerErrorMessage", 4083 "id": "ServiceWorkerErrorMessage",
4083 "type": "object", 4084 "type": "object",
4084 "description": "ServiceWorker error message.", 4085 "description": "ServiceWorker error message.",
4085 "properties": [ 4086 "properties": [
4086 { "name": "errorMessage", "type": "string" }, 4087 { "name": "errorMessage", "type": "string" },
4087 { "name": "registrationId", "type": "string" }, 4088 { "name": "registrationId", "type": "string" },
4088 { "name": "versionId", "type": "string" }, 4089 { "name": "versionId", "type": "string" },
(...skipping 965 matching lines...) Expand 10 before | Expand all | Expand 10 after
5054 ], 5055 ],
5055 "returns": [ 5056 "returns": [
5056 { "name": "accessibilityNode", "$ref": "AXNode", "descriptio n": "The <code>Accessibility.AXNode</code> for this DOM node, if it exists.", "o ptional": true } 5057 { "name": "accessibilityNode", "$ref": "AXNode", "descriptio n": "The <code>Accessibility.AXNode</code> for this DOM node, if it exists.", "o ptional": true }
5057 ], 5058 ],
5058 "description": "Fetches the accessibility node for this DOM node , if it exists.", 5059 "description": "Fetches the accessibility node for this DOM node , if it exists.",
5059 "hidden": true 5060 "hidden": true
5060 } 5061 }
5061 ] 5062 ]
5062 }] 5063 }]
5063 } 5064 }
OLDNEW
« no previous file with comments | « Source/devtools/front_end/sdk/ServiceWorkerManager.js ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698