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

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

Issue 1164583002: [4/5 blink] Shows the clients which are controlled by ServiceWorker in DevTools. (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: incorporated pfeldman's comment Created 5 years, 6 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 4221 matching lines...) Expand 10 before | Expand all | Expand 10 after
4232 "name": "deliverPushMessage", 4232 "name": "deliverPushMessage",
4233 "parameters": [ 4233 "parameters": [
4234 { "name": "origin", "type": "string" }, 4234 { "name": "origin", "type": "string" },
4235 { "name": "registrationId", "type": "string" }, 4235 { "name": "registrationId", "type": "string" },
4236 { "name": "data", "type": "string" } 4236 { "name": "data", "type": "string" }
4237 ], 4237 ],
4238 "handlers": ["browser"] 4238 "handlers": ["browser"]
4239 }, 4239 },
4240 { 4240 {
4241 "name": "getTargetInfo", 4241 "name": "getTargetInfo",
4242 "async": true,
4243 "parameters": [ 4242 "parameters": [
4244 { "name": "targetId", "$ref": "TargetID" } 4243 { "name": "targetId", "$ref": "TargetID" }
4245 ], 4244 ],
4246 "returns": [ 4245 "returns": [
4247 { "name": "targetInfo","$ref": "TargetInfo" } 4246 { "name": "targetInfo","$ref": "TargetInfo" }
4248 ], 4247 ],
4249 "handlers": ["browser"] 4248 "handlers": ["browser"]
4250 }, 4249 },
4251 { 4250 {
4252 "name": "activateTarget", 4251 "name": "activateTarget",
(...skipping 765 matching lines...) Expand 10 before | Expand all | Expand 10 after
5018 "name": "securityStateChanged", 5017 "name": "securityStateChanged",
5019 "description": "The security state of the page changed.", 5018 "description": "The security state of the page changed.",
5020 "parameters": [ 5019 "parameters": [
5021 { "name": "securityState", "$ref": "SecurityState", "descrip tion": "Security state." } 5020 { "name": "securityState", "$ref": "SecurityState", "descrip tion": "Security state." }
5022 ], 5021 ],
5023 "handlers": ["browser"] 5022 "handlers": ["browser"]
5024 } 5023 }
5025 ] 5024 ]
5026 }] 5025 }]
5027 } 5026 }
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