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

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

Issue 1003653002: Remove *_version properties of ServiceWorkerRegistration and workerRegistrationDeleted event. (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 | « 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 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": "isDeleted", "type": "boolean", "optional": true }
4044 { "name": "activeVersion", "optional": true, "$ref": "Servic eWorkerVersion" },
4045 { "name": "waitingVersion", "optional": true, "$ref": "Servi ceWorkerVersion" },
4046 { "name": "installingVersion", "optional": true, "$ref": "Se rviceWorkerVersion" }
4047 ] 4044 ]
4048 }, 4045 },
4049 { 4046 {
4050 "id": "ServiceWorkerVersion", 4047 "id": "ServiceWorkerVersion",
4051 "type": "object", 4048 "type": "object",
4052 "description": "ServiceWorker version.", 4049 "description": "ServiceWorker version.",
4053 "properties": [ 4050 "properties": [
4054 { "name": "versionId", "type": "string" }, 4051 { "name": "versionId", "type": "string" },
4055 { "name": "registrationId", "type": "string" }, 4052 { "name": "registrationId", "type": "string" },
4056 { "name": "scriptURL", "type": "string" }, 4053 { "name": "scriptURL", "type": "string" },
(...skipping 57 matching lines...) Expand 10 before | Expand all | Expand 10 after
4114 { "name": "registrations", "type": "array", "items": { "$ref ": "ServiceWorkerRegistration" } } 4111 { "name": "registrations", "type": "array", "items": { "$ref ": "ServiceWorkerRegistration" } }
4115 ], 4112 ],
4116 "handlers": ["browser"] 4113 "handlers": ["browser"]
4117 }, 4114 },
4118 { 4115 {
4119 "name": "workerVersionUpdated", 4116 "name": "workerVersionUpdated",
4120 "parameters": [ 4117 "parameters": [
4121 { "name": "versions", "type": "array", "items": { "$ref": "S erviceWorkerVersion" } } 4118 { "name": "versions", "type": "array", "items": { "$ref": "S erviceWorkerVersion" } }
4122 ], 4119 ],
4123 "handlers": ["browser"] 4120 "handlers": ["browser"]
4124 },
4125 {
4126 "name": "workerRegistrationDeleted",
4127 "parameters": [
4128 { "name": "registrationId", "type": "string" }
4129 ],
4130 "handlers": ["browser"]
4131 } 4121 }
4132 ] 4122 ]
4133 }, 4123 },
4134 { 4124 {
4135 "domain": "Canvas", 4125 "domain": "Canvas",
4136 "hidden": true, 4126 "hidden": true,
4137 "types": [ 4127 "types": [
4138 { 4128 {
4139 "id": "ResourceId", 4129 "id": "ResourceId",
4140 "type": "string", 4130 "type": "string",
(...skipping 765 matching lines...) Expand 10 before | Expand all | Expand 10 after
4906 ], 4896 ],
4907 "returns": [ 4897 "returns": [
4908 { "name": "accessibilityNode", "$ref": "AXNode", "descriptio n": "The <code>Accessibility.AXNode</code> for this DOM node, if it exists.", "o ptional": true } 4898 { "name": "accessibilityNode", "$ref": "AXNode", "descriptio n": "The <code>Accessibility.AXNode</code> for this DOM node, if it exists.", "o ptional": true }
4909 ], 4899 ],
4910 "description": "Fetches the accessibility node for this DOM node , if it exists.", 4900 "description": "Fetches the accessibility node for this DOM node , if it exists.",
4911 "hidden": true 4901 "hidden": true
4912 } 4902 }
4913 ] 4903 ]
4914 }] 4904 }]
4915 } 4905 }
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