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

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

Issue 14294004: Implementing console command 'debug'. (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Added test. Created 7 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 | Annotate | Revision Log
OLDNEW
1 { 1 {
2 "version": { "major": "1", "minor": "0" }, 2 "version": { "major": "1", "minor": "0" },
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 2972 matching lines...) Expand 10 before | Expand all | Expand 10 after
2983 }, 2983 },
2984 { 2984 {
2985 "name": "breakpointResolved", 2985 "name": "breakpointResolved",
2986 "parameters": [ 2986 "parameters": [
2987 { "name": "breakpointId", "$ref": "BreakpointId", "descripti on": "Breakpoint unique identifier." }, 2987 { "name": "breakpointId", "$ref": "BreakpointId", "descripti on": "Breakpoint unique identifier." },
2988 { "name": "location", "$ref": "Location", "description": "Ac tual breakpoint location." } 2988 { "name": "location", "$ref": "Location", "description": "Ac tual breakpoint location." }
2989 ], 2989 ],
2990 "description": "Fired when breakpoint is resolved to an actual s cript and location." 2990 "description": "Fired when breakpoint is resolved to an actual s cript and location."
2991 }, 2991 },
2992 { 2992 {
2993 "name": "setBreakpointRequested",
2994 "parameters": [
2995 { "name": "location", "$ref": "Location", "description": "re akpoint location." }
2996 ],
2997 "description": "Fired when backend wants to set breakpoint."
2998 },
2999 {
2993 "name": "paused", 3000 "name": "paused",
2994 "parameters": [ 3001 "parameters": [
2995 { "name": "callFrames", "type": "array", "items": { "$ref": "CallFrame" }, "description": "Call stack the virtual machine stopped on." }, 3002 { "name": "callFrames", "type": "array", "items": { "$ref": "CallFrame" }, "description": "Call stack the virtual machine stopped on." },
2996 { "name": "reason", "type": "string", "enum": [ "XHR", "DOM" , "EventListener", "exception", "assert", "CSPViolation", "other" ], "descriptio n": "Pause reason." }, 3003 { "name": "reason", "type": "string", "enum": [ "XHR", "DOM" , "EventListener", "exception", "assert", "CSPViolation", "other" ], "descriptio n": "Pause reason." },
2997 { "name": "data", "type": "object", "optional": true, "descr iption": "Object containing break-specific auxiliary properties." } 3004 { "name": "data", "type": "object", "optional": true, "descr iption": "Object containing break-specific auxiliary properties." }
2998 ], 3005 ],
2999 "description": "Fired when the virtual machine stopped on breakp oint or exception or any other stop criteria." 3006 "description": "Fired when the virtual machine stopped on breakp oint or exception or any other stop criteria."
3000 }, 3007 },
3001 { 3008 {
3002 "name": "resumed", 3009 "name": "resumed",
(...skipping 672 matching lines...) Expand 10 before | Expand all | Expand 10 after
3675 ] 3682 ]
3676 } 3683 }
3677 ], 3684 ],
3678 "events": [ 3685 "events": [
3679 { 3686 {
3680 "name": "layerTreeDidChange" 3687 "name": "layerTreeDidChange"
3681 } 3688 }
3682 ] 3689 ]
3683 }] 3690 }]
3684 } 3691 }
OLDNEW
« Source/core/inspector/InjectedScriptSource.js ('K') | « Source/devtools/front_end/DebuggerModel.js ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698