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

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

Issue 74063002: DevTools: Support asynchronous call stacks on backend. (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: removed trash Created 7 years 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 | Annotate | Revision Log
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 3263 matching lines...) Expand 10 before | Expand all | Expand 10 after
3274 "hidden": true, 3274 "hidden": true,
3275 "description": "Returns call stack including variables changed s ince VM was paused. VM must be paused." 3275 "description": "Returns call stack including variables changed s ince VM was paused. VM must be paused."
3276 }, 3276 },
3277 { 3277 {
3278 "name": "skipStackFrames", 3278 "name": "skipStackFrames",
3279 "parameters": [ 3279 "parameters": [
3280 { "name": "script", "optional": true, "type": "string", "des cription": "Regular expression defining the scripts to ignore while stepping." } 3280 { "name": "script", "optional": true, "type": "string", "des cription": "Regular expression defining the scripts to ignore while stepping." }
3281 ], 3281 ],
3282 "hidden": true, 3282 "hidden": true,
3283 "description": "Makes backend skip steps in the sources with nam es matching given pattern. VM will try leave blacklisted scripts by performing ' step in' several times, finally resorting to 'step out' if unsuccessful." 3283 "description": "Makes backend skip steps in the sources with nam es matching given pattern. VM will try leave blacklisted scripts by performing ' step in' several times, finally resorting to 'step out' if unsuccessful."
3284 },
3285 {
3286 "name": "setAsyncCallStackDepth",
3287 "parameters": [
3288 { "name": "maxDepth", "type": "integer", "description": "Max imum depth of async call stacks. Setting to <code>0</code> will effectively disa ble collecting async call stacks (default)." }
3289 ],
3290 "hidden": true,
3291 "description": "Enables or disables async call stacks tracking."
3284 } 3292 }
3285 ], 3293 ],
3286 "events": [ 3294 "events": [
3287 { 3295 {
3288 "name": "globalObjectCleared", 3296 "name": "globalObjectCleared",
3289 "description": "Called when global has been cleared and debugger client should reset its state. Happens upon navigation or reload." 3297 "description": "Called when global has been cleared and debugger client should reset its state. Happens upon navigation or reload."
3290 }, 3298 },
3291 { 3299 {
3292 "name": "scriptParsed", 3300 "name": "scriptParsed",
3293 "parameters": [ 3301 "parameters": [
(...skipping 777 matching lines...) Expand 10 before | Expand all | Expand 10 after
4071 "parameters": [ 4079 "parameters": [
4072 { "name": "value", "type": "array", "items": { "type": "obje ct" } } 4080 { "name": "value", "type": "array", "items": { "type": "obje ct" } }
4073 ] 4081 ]
4074 }, 4082 },
4075 { 4083 {
4076 "name": "tracingComplete" 4084 "name": "tracingComplete"
4077 } 4085 }
4078 ] 4086 ]
4079 }] 4087 }]
4080 } 4088 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698