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

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

Issue 1583383003: [DevTools] Send source map content from frontend to backend (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@blackbox-inline-source-map
Patch Set: 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 3922 matching lines...) Expand 10 before | Expand all | Expand 10 after
3933 "hidden": true, 3933 "hidden": true,
3934 "description": "Sets breakpoint on AsyncOperation callback handl er." 3934 "description": "Sets breakpoint on AsyncOperation callback handl er."
3935 }, 3935 },
3936 { 3936 {
3937 "name": "removeAsyncOperationBreakpoint", 3937 "name": "removeAsyncOperationBreakpoint",
3938 "parameters": [ 3938 "parameters": [
3939 { "name": "operationId", "type": "integer", "description": " ID of the async operation to remove breakpoint for." } 3939 { "name": "operationId", "type": "integer", "description": " ID of the async operation to remove breakpoint for." }
3940 ], 3940 ],
3941 "hidden": true, 3941 "hidden": true,
3942 "description": "Removes AsyncOperation breakpoint." 3942 "description": "Removes AsyncOperation breakpoint."
3943 },
3944 {
3945 "name": "setSourceMapContent",
3946 "parameters": [
3947 { "name": "scriptId", "$ref": "ScriptId", "description": "Id entifier of the script." },
3948 { "name": "content", "type": "string", "description": "Sourc e map's content."}
3949 ],
3950 "hidden": true,
3951 "description": "Set source map's content on backend."
3943 } 3952 }
3944 ], 3953 ],
3945 "events": [ 3954 "events": [
3946 { 3955 {
3947 "name": "globalObjectCleared", 3956 "name": "globalObjectCleared",
3948 "description": "Called when global has been cleared and debugger client should reset its state. Happens upon navigation or reload." 3957 "description": "Called when global has been cleared and debugger client should reset its state. Happens upon navigation or reload."
3949 }, 3958 },
3950 { 3959 {
3951 "name": "scriptParsed", 3960 "name": "scriptParsed",
3952 "parameters": [ 3961 "parameters": [
(...skipping 1355 matching lines...) Expand 10 before | Expand all | Expand 10 after
5308 ], 5317 ],
5309 "returns": [ 5318 "returns": [
5310 { "name": "accessibilityNode", "$ref": "AXNode", "descriptio n": "The <code>Accessibility.AXNode</code> for this DOM node, if it exists.", "o ptional": true } 5319 { "name": "accessibilityNode", "$ref": "AXNode", "descriptio n": "The <code>Accessibility.AXNode</code> for this DOM node, if it exists.", "o ptional": true }
5311 ], 5320 ],
5312 "description": "Fetches the accessibility node for this DOM node , if it exists.", 5321 "description": "Fetches the accessibility node for this DOM node , if it exists.",
5313 "hidden": true 5322 "hidden": true
5314 } 5323 }
5315 ] 5324 ]
5316 }] 5325 }]
5317 } 5326 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698