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

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

Issue 1569893003: Add "Request app banner" context menu in DevTools (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: incorporated pfeldman's comment Created 4 years, 11 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 | « third_party/WebKit/Source/devtools/front_end/screencast/module.json ('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 433 matching lines...) Expand 10 before | Expand all | Expand 10 after
444 "hidden": true, 444 "hidden": true,
445 "handlers": ["browser"] 445 "handlers": ["browser"]
446 }, 446 },
447 { 447 {
448 "name": "setOverlayMessage", 448 "name": "setOverlayMessage",
449 "parameters": [ 449 "parameters": [
450 { "name": "message", "type": "string", "optional": true, "de scription": "Overlay message to display when paused in debugger." } 450 { "name": "message", "type": "string", "optional": true, "de scription": "Overlay message to display when paused in debugger." }
451 ], 451 ],
452 "hidden": true, 452 "hidden": true,
453 "description": "Sets overlay message." 453 "description": "Sets overlay message."
454 },
455 {
456 "name": "requestAppBanner",
457 "returns": [
458 { "name": "result", "type": "boolean" }
459 ],
460 "hidden": true,
461 "handlers": ["browser"]
454 } 462 }
455 ], 463 ],
456 "events": [ 464 "events": [
457 { 465 {
458 "name": "domContentEventFired", 466 "name": "domContentEventFired",
459 "parameters": [ 467 "parameters": [
460 { "name": "timestamp", "type": "number" } 468 { "name": "timestamp", "type": "number" }
461 ] 469 ]
462 }, 470 },
463 { 471 {
(...skipping 4844 matching lines...) Expand 10 before | Expand all | Expand 10 after
5308 ], 5316 ],
5309 "returns": [ 5317 "returns": [
5310 { "name": "accessibilityNode", "$ref": "AXNode", "descriptio n": "The <code>Accessibility.AXNode</code> for this DOM node, if it exists.", "o ptional": true } 5318 { "name": "accessibilityNode", "$ref": "AXNode", "descriptio n": "The <code>Accessibility.AXNode</code> for this DOM node, if it exists.", "o ptional": true }
5311 ], 5319 ],
5312 "description": "Fetches the accessibility node for this DOM node , if it exists.", 5320 "description": "Fetches the accessibility node for this DOM node , if it exists.",
5313 "hidden": true 5321 "hidden": true
5314 } 5322 }
5315 ] 5323 ]
5316 }] 5324 }]
5317 } 5325 }
OLDNEW
« no previous file with comments | « third_party/WebKit/Source/devtools/front_end/screencast/module.json ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698