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

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: 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 4133 matching lines...) Expand 10 before | Expand all | Expand 10 after
4144 { "name": "versionId", "type": "string" } 4144 { "name": "versionId", "type": "string" }
4145 ], 4145 ],
4146 "handlers": ["browser"] 4146 "handlers": ["browser"]
4147 }, 4147 },
4148 { 4148 {
4149 "name": "setDebugOnStart", 4149 "name": "setDebugOnStart",
4150 "parameters": [ 4150 "parameters": [
4151 { "name": "debugOnStart", "type": "boolean" } 4151 { "name": "debugOnStart", "type": "boolean" }
4152 ], 4152 ],
4153 "handlers": ["browser"] 4153 "handlers": ["browser"]
4154 },
4155 {
4156 "name": "dispatchPushEvent",
pfeldman 2015/04/10 11:54:38 emitPushEvent?
horo 2015/04/10 23:18:22 renamed to deliverPushMessage
4157 "parameters": [
4158 { "name": "origin", "type": "string" },
4159 { "name": "registrationId", "type": "string" },
4160 { "name": "data", "type": "string" }
4161 ],
4162 "handlers": ["browser"]
4154 } 4163 }
4155 ], 4164 ],
4156 "events": [ 4165 "events": [
4157 { 4166 {
4158 "name": "workerCreated", 4167 "name": "workerCreated",
4159 "parameters": [ 4168 "parameters": [
4160 { "name": "workerId", "type": "string" }, 4169 { "name": "workerId", "type": "string" },
4161 { "name": "url", "type": "string" } 4170 { "name": "url", "type": "string" }
4162 ], 4171 ],
4163 "handlers": ["browser"] 4172 "handlers": ["browser"]
(...skipping 906 matching lines...) Expand 10 before | Expand all | Expand 10 after
5070 ], 5079 ],
5071 "returns": [ 5080 "returns": [
5072 { "name": "accessibilityNode", "$ref": "AXNode", "descriptio n": "The <code>Accessibility.AXNode</code> for this DOM node, if it exists.", "o ptional": true } 5081 { "name": "accessibilityNode", "$ref": "AXNode", "descriptio n": "The <code>Accessibility.AXNode</code> for this DOM node, if it exists.", "o ptional": true }
5073 ], 5082 ],
5074 "description": "Fetches the accessibility node for this DOM node , if it exists.", 5083 "description": "Fetches the accessibility node for this DOM node , if it exists.",
5075 "hidden": true 5084 "hidden": true
5076 } 5085 }
5077 ] 5086 ]
5078 }] 5087 }]
5079 } 5088 }
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