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

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

Issue 1564913003: [DevTools] Shows Manifest file in Sources tab (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Set Manifest URL in error messages. 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
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 72 matching lines...) Expand 10 before | Expand all | Expand 10 after
83 } 83 }
84 ] 84 ]
85 }, 85 },
86 { 86 {
87 "domain": "Page", 87 "domain": "Page",
88 "description": "Actions and events related to the inspected page belong to the page domain.", 88 "description": "Actions and events related to the inspected page belong to the page domain.",
89 "types": [ 89 "types": [
90 { 90 {
91 "id": "ResourceType", 91 "id": "ResourceType",
92 "type": "string", 92 "type": "string",
93 "enum": ["Document", "Stylesheet", "Image", "Media", "Font", "Sc ript", "TextTrack", "XHR", "Fetch", "EventSource", "WebSocket", "Other"], 93 "enum": ["Document", "Stylesheet", "Image", "Media", "Font", "Sc ript", "TextTrack", "XHR", "Fetch", "EventSource", "WebSocket", "Manifest", "Oth er"],
94 "description": "Resource type as it was perceived by the renderi ng engine." 94 "description": "Resource type as it was perceived by the renderi ng engine."
95 }, 95 },
96 { 96 {
97 "id": "FrameId", 97 "id": "FrameId",
98 "type": "string", 98 "type": "string",
99 "description": "Unique frame identifier." 99 "description": "Unique frame identifier."
100 }, 100 },
101 { 101 {
102 "id": "Frame", 102 "id": "Frame",
103 "type": "object", 103 "type": "object",
(...skipping 5204 matching lines...) Expand 10 before | Expand all | Expand 10 after
5308 ], 5308 ],
5309 "returns": [ 5309 "returns": [
5310 { "name": "accessibilityNode", "$ref": "AXNode", "descriptio n": "The <code>Accessibility.AXNode</code> for this DOM node, if it exists.", "o ptional": true } 5310 { "name": "accessibilityNode", "$ref": "AXNode", "descriptio n": "The <code>Accessibility.AXNode</code> for this DOM node, if it exists.", "o ptional": true }
5311 ], 5311 ],
5312 "description": "Fetches the accessibility node for this DOM node , if it exists.", 5312 "description": "Fetches the accessibility node for this DOM node , if it exists.",
5313 "hidden": true 5313 "hidden": true
5314 } 5314 }
5315 ] 5315 ]
5316 }] 5316 }]
5317 } 5317 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698