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

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

Issue 996363002: Add isDeleted flag to ServiceWorkerRegistration DevTool's protocol. (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: Created 5 years, 9 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 | « no previous file | 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 4022 matching lines...) Expand 10 before | Expand all | Expand 10 after
4033 "domain": "ServiceWorker", 4033 "domain": "ServiceWorker",
4034 "hidden": true, 4034 "hidden": true,
4035 "types": [ 4035 "types": [
4036 { 4036 {
4037 "id": "ServiceWorkerRegistration", 4037 "id": "ServiceWorkerRegistration",
4038 "type": "object", 4038 "type": "object",
4039 "description": "ServiceWorker registration.", 4039 "description": "ServiceWorker registration.",
4040 "properties": [ 4040 "properties": [
4041 { "name": "registrationId", "type": "string" }, 4041 { "name": "registrationId", "type": "string" },
4042 { "name": "scopeURL", "type": "string" }, 4042 { "name": "scopeURL", "type": "string" },
4043 { "name": "isDeleted", "type": "boolean", "optional": true } ,
4043 { "name": "activeVersion", "optional": true, "$ref": "Servic eWorkerVersion" }, 4044 { "name": "activeVersion", "optional": true, "$ref": "Servic eWorkerVersion" },
4044 { "name": "waitingVersion", "optional": true, "$ref": "Servi ceWorkerVersion" }, 4045 { "name": "waitingVersion", "optional": true, "$ref": "Servi ceWorkerVersion" },
4045 { "name": "installingVersion", "optional": true, "$ref": "Se rviceWorkerVersion" } 4046 { "name": "installingVersion", "optional": true, "$ref": "Se rviceWorkerVersion" }
4046 ] 4047 ]
4047 }, 4048 },
4048 { 4049 {
4049 "id": "ServiceWorkerVersion", 4050 "id": "ServiceWorkerVersion",
4050 "type": "object", 4051 "type": "object",
4051 "description": "ServiceWorker version.", 4052 "description": "ServiceWorker version.",
4052 "properties": [ 4053 "properties": [
(...skipping 852 matching lines...) Expand 10 before | Expand all | Expand 10 after
4905 ], 4906 ],
4906 "returns": [ 4907 "returns": [
4907 { "name": "accessibilityNode", "$ref": "AXNode", "descriptio n": "The <code>Accessibility.AXNode</code> for this DOM node, if it exists.", "o ptional": true } 4908 { "name": "accessibilityNode", "$ref": "AXNode", "descriptio n": "The <code>Accessibility.AXNode</code> for this DOM node, if it exists.", "o ptional": true }
4908 ], 4909 ],
4909 "description": "Fetches the accessibility node for this DOM node , if it exists.", 4910 "description": "Fetches the accessibility node for this DOM node , if it exists.",
4910 "hidden": true 4911 "hidden": true
4911 } 4912 }
4912 ] 4913 ]
4913 }] 4914 }]
4914 } 4915 }
OLDNEW
« no previous file with comments | « no previous file | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698