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

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

Issue 114123005: Show media and VTT text tracks in the devtools. (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: Addressed feedback. Created 6 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/networkLogView.css ('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 51 matching lines...) Expand 10 before | Expand all | Expand 10 after
62 } 62 }
63 ] 63 ]
64 }, 64 },
65 { 65 {
66 "domain": "Page", 66 "domain": "Page",
67 "description": "Actions and events related to the inspected page belong to the page domain.", 67 "description": "Actions and events related to the inspected page belong to the page domain.",
68 "types": [ 68 "types": [
69 { 69 {
70 "id": "ResourceType", 70 "id": "ResourceType",
71 "type": "string", 71 "type": "string",
72 "enum": ["Document", "Stylesheet", "Image", "Font", "Script", "X HR", "WebSocket", "Other"], 72 "enum": ["Document", "Stylesheet", "Image", "Media", "Font", "Sc ript", "TextTrack", "XHR", "WebSocket", "Other"],
73 "description": "Resource type as it was perceived by the renderi ng engine." 73 "description": "Resource type as it was perceived by the renderi ng engine."
74 }, 74 },
75 { 75 {
76 "id": "FrameId", 76 "id": "FrameId",
77 "type": "string", 77 "type": "string",
78 "description": "Unique frame identifier." 78 "description": "Unique frame identifier."
79 }, 79 },
80 { 80 {
81 "id": "Frame", 81 "id": "Frame",
82 "type": "object", 82 "type": "object",
(...skipping 3978 matching lines...) Expand 10 before | Expand all | Expand 10 after
4061 { 4061 {
4062 "name": "dataAvailable", 4062 "name": "dataAvailable",
4063 "parameters": [ 4063 "parameters": [
4064 {"name": "value", "type": "array", "items": { "$ref": "Power Event" }, "description": "List of power events." } 4064 {"name": "value", "type": "array", "items": { "$ref": "Power Event" }, "description": "List of power events." }
4065 ], 4065 ],
4066 "handlers": ["browser", "frontend"] 4066 "handlers": ["browser", "frontend"]
4067 } 4067 }
4068 ] 4068 ]
4069 }] 4069 }]
4070 } 4070 }
OLDNEW
« no previous file with comments | « Source/devtools/front_end/networkLogView.css ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698