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

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: s/focus/activate/ 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
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 730 matching lines...) Expand 10 before | Expand all | Expand 10 after
4983 ], 4982 ],
4984 "returns": [ 4983 "returns": [
4985 { "name": "accessibilityNode", "$ref": "AXNode", "descriptio n": "The <code>Accessibility.AXNode</code> for this DOM node, if it exists.", "o ptional": true } 4984 { "name": "accessibilityNode", "$ref": "AXNode", "descriptio n": "The <code>Accessibility.AXNode</code> for this DOM node, if it exists.", "o ptional": true }
4986 ], 4985 ],
4987 "description": "Fetches the accessibility node for this DOM node , if it exists.", 4986 "description": "Fetches the accessibility node for this DOM node , if it exists.",
4988 "hidden": true 4987 "hidden": true
4989 } 4988 }
4990 ] 4989 ]
4991 }] 4990 }]
4992 } 4991 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698