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

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

Issue 1079013002: Add "emulate push event" button to ServiceWorkersView in DevTools [2/2 blink] (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: s/dispatchPushEvent/deliverPushMessage/ 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 4134 matching lines...) Expand 10 before | Expand all | Expand 10 after
4145 { "name": "versionId", "type": "string" } 4145 { "name": "versionId", "type": "string" }
4146 ], 4146 ],
4147 "handlers": ["browser"] 4147 "handlers": ["browser"]
4148 }, 4148 },
4149 { 4149 {
4150 "name": "setDebugOnStart", 4150 "name": "setDebugOnStart",
4151 "parameters": [ 4151 "parameters": [
4152 { "name": "debugOnStart", "type": "boolean" } 4152 { "name": "debugOnStart", "type": "boolean" }
4153 ], 4153 ],
4154 "handlers": ["browser"] 4154 "handlers": ["browser"]
4155 },
4156 {
4157 "name": "deliverPushMessage",
4158 "parameters": [
4159 { "name": "origin", "type": "string" },
4160 { "name": "registrationId", "type": "string" },
4161 { "name": "data", "type": "string" }
4162 ],
4163 "handlers": ["browser"]
4155 } 4164 }
4156 ], 4165 ],
4157 "events": [ 4166 "events": [
4158 { 4167 {
4159 "name": "workerCreated", 4168 "name": "workerCreated",
4160 "parameters": [ 4169 "parameters": [
4161 { "name": "workerId", "type": "string" }, 4170 { "name": "workerId", "type": "string" },
4162 { "name": "url", "type": "string" } 4171 { "name": "url", "type": "string" }
4163 ], 4172 ],
4164 "handlers": ["browser"] 4173 "handlers": ["browser"]
(...skipping 906 matching lines...) Expand 10 before | Expand all | Expand 10 after
5071 ], 5080 ],
5072 "returns": [ 5081 "returns": [
5073 { "name": "accessibilityNode", "$ref": "AXNode", "descriptio n": "The <code>Accessibility.AXNode</code> for this DOM node, if it exists.", "o ptional": true } 5082 { "name": "accessibilityNode", "$ref": "AXNode", "descriptio n": "The <code>Accessibility.AXNode</code> for this DOM node, if it exists.", "o ptional": true }
5074 ], 5083 ],
5075 "description": "Fetches the accessibility node for this DOM node , if it exists.", 5084 "description": "Fetches the accessibility node for this DOM node , if it exists.",
5076 "hidden": true 5085 "hidden": true
5077 } 5086 }
5078 ] 5087 ]
5079 }] 5088 }]
5080 } 5089 }
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