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

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, 10 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/sdk/SourceMap.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 3930 matching lines...) Expand 10 before | Expand all | Expand 10 after
3941 "hidden": true, 3941 "hidden": true,
3942 "description": "Sets breakpoint on AsyncOperation callback handl er." 3942 "description": "Sets breakpoint on AsyncOperation callback handl er."
3943 }, 3943 },
3944 { 3944 {
3945 "name": "removeAsyncOperationBreakpoint", 3945 "name": "removeAsyncOperationBreakpoint",
3946 "parameters": [ 3946 "parameters": [
3947 { "name": "operationId", "type": "integer", "description": " ID of the async operation to remove breakpoint for." } 3947 { "name": "operationId", "type": "integer", "description": " ID of the async operation to remove breakpoint for." }
3948 ], 3948 ],
3949 "hidden": true, 3949 "hidden": true,
3950 "description": "Removes AsyncOperation breakpoint." 3950 "description": "Removes AsyncOperation breakpoint."
3951 },
3952 {
3953 "name": "setSourceMapContent",
3954 "parameters": [
3955 { "name": "scriptId", "$ref": "ScriptId", "description": "Id entifier of the script." },
3956 { "name": "sourceMapURL", "type": "string", "description": " Source map's url." },
3957 { "name": "content", "type": "string", "description": "Sourc e map's content." }
3958 ],
3959 "hidden": true,
3960 "description": "Set source map's content on backend."
3951 } 3961 }
3952 ], 3962 ],
3953 "events": [ 3963 "events": [
3954 { 3964 {
3955 "name": "globalObjectCleared", 3965 "name": "globalObjectCleared",
3956 "description": "Called when global has been cleared and debugger client should reset its state. Happens upon navigation or reload." 3966 "description": "Called when global has been cleared and debugger client should reset its state. Happens upon navigation or reload."
3957 }, 3967 },
3958 { 3968 {
3959 "name": "scriptParsed", 3969 "name": "scriptParsed",
3960 "parameters": [ 3970 "parameters": [
(...skipping 1355 matching lines...) Expand 10 before | Expand all | Expand 10 after
5316 ], 5326 ],
5317 "returns": [ 5327 "returns": [
5318 { "name": "accessibilityNode", "$ref": "AXNode", "descriptio n": "The <code>Accessibility.AXNode</code> for this DOM node, if it exists.", "o ptional": true } 5328 { "name": "accessibilityNode", "$ref": "AXNode", "descriptio n": "The <code>Accessibility.AXNode</code> for this DOM node, if it exists.", "o ptional": true }
5319 ], 5329 ],
5320 "description": "Fetches the accessibility node for this DOM node , if it exists.", 5330 "description": "Fetches the accessibility node for this DOM node , if it exists.",
5321 "hidden": true 5331 "hidden": true
5322 } 5332 }
5323 ] 5333 ]
5324 }] 5334 }]
5325 } 5335 }
OLDNEW
« no previous file with comments | « third_party/WebKit/Source/devtools/front_end/sdk/SourceMap.js ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698