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

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: 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 4088 matching lines...) Expand 10 before | Expand all | Expand 10 after
4099 { 4099 {
4100 "id": "ServiceWorkerVersion", 4100 "id": "ServiceWorkerVersion",
4101 "type": "object", 4101 "type": "object",
4102 "description": "ServiceWorker version.", 4102 "description": "ServiceWorker version.",
4103 "properties": [ 4103 "properties": [
4104 { "name": "versionId", "type": "string" }, 4104 { "name": "versionId", "type": "string" },
4105 { "name": "registrationId", "type": "string" }, 4105 { "name": "registrationId", "type": "string" },
4106 { "name": "scriptURL", "type": "string" }, 4106 { "name": "scriptURL", "type": "string" },
4107 { "name": "runningStatus", "$ref": "ServiceWorkerVersionRunn ingStatus" }, 4107 { "name": "runningStatus", "$ref": "ServiceWorkerVersionRunn ingStatus" },
4108 { "name": "status", "$ref": "ServiceWorkerVersionStatus" }, 4108 { "name": "status", "$ref": "ServiceWorkerVersionStatus" },
4109 { "name": "updateTime", "type": "number", "optional": true} 4109 { "name": "scriptLastModified", "type": "number", "optional" : true},
4110 { "name": "scriptResponseTime", "type": "number", "optional" : true}
dgozman 2015/03/30 11:12:20 I don't understand from the name what this means.
horo 2015/03/30 14:15:51 Done.
4110 ] 4111 ]
4111 }, 4112 },
4112 { 4113 {
4113 "id": "ServiceWorkerErrorMessage", 4114 "id": "ServiceWorkerErrorMessage",
4114 "type": "object", 4115 "type": "object",
4115 "description": "ServiceWorker error message.", 4116 "description": "ServiceWorker error message.",
4116 "properties": [ 4117 "properties": [
4117 { "name": "errorMessage", "type": "string" }, 4118 { "name": "errorMessage", "type": "string" },
4118 { "name": "registrationId", "type": "string" }, 4119 { "name": "registrationId", "type": "string" },
4119 { "name": "versionId", "type": "string" }, 4120 { "name": "versionId", "type": "string" },
(...skipping 965 matching lines...) Expand 10 before | Expand all | Expand 10 after
5085 ], 5086 ],
5086 "returns": [ 5087 "returns": [
5087 { "name": "accessibilityNode", "$ref": "AXNode", "descriptio n": "The <code>Accessibility.AXNode</code> for this DOM node, if it exists.", "o ptional": true } 5088 { "name": "accessibilityNode", "$ref": "AXNode", "descriptio n": "The <code>Accessibility.AXNode</code> for this DOM node, if it exists.", "o ptional": true }
5088 ], 5089 ],
5089 "description": "Fetches the accessibility node for this DOM node , if it exists.", 5090 "description": "Fetches the accessibility node for this DOM node , if it exists.",
5090 "hidden": true 5091 "hidden": true
5091 } 5092 }
5092 ] 5093 ]
5093 }] 5094 }]
5094 } 5095 }
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