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

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

Issue 15096004: Passing hit breakpoint IDs to ScriptDebugServer. (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Created 7 years, 6 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
« no previous file with comments | « Source/devtools/front_end/DebuggerModel.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": "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 3031 matching lines...) Expand 10 before | Expand all | Expand 10 after
3042 { "name": "breakpointId", "$ref": "BreakpointId", "descripti on": "Breakpoint unique identifier." }, 3042 { "name": "breakpointId", "$ref": "BreakpointId", "descripti on": "Breakpoint unique identifier." },
3043 { "name": "location", "$ref": "Location", "description": "Ac tual breakpoint location." } 3043 { "name": "location", "$ref": "Location", "description": "Ac tual breakpoint location." }
3044 ], 3044 ],
3045 "description": "Fired when breakpoint is resolved to an actual s cript and location." 3045 "description": "Fired when breakpoint is resolved to an actual s cript and location."
3046 }, 3046 },
3047 { 3047 {
3048 "name": "paused", 3048 "name": "paused",
3049 "parameters": [ 3049 "parameters": [
3050 { "name": "callFrames", "type": "array", "items": { "$ref": "CallFrame" }, "description": "Call stack the virtual machine stopped on." }, 3050 { "name": "callFrames", "type": "array", "items": { "$ref": "CallFrame" }, "description": "Call stack the virtual machine stopped on." },
3051 { "name": "reason", "type": "string", "enum": [ "XHR", "DOM" , "EventListener", "exception", "assert", "CSPViolation", "other" ], "descriptio n": "Pause reason." }, 3051 { "name": "reason", "type": "string", "enum": [ "XHR", "DOM" , "EventListener", "exception", "assert", "CSPViolation", "other" ], "descriptio n": "Pause reason." },
3052 { "name": "data", "type": "object", "optional": true, "descr iption": "Object containing break-specific auxiliary properties." } 3052 { "name": "data", "type": "object", "optional": true, "descr iption": "Object containing break-specific auxiliary properties." },
3053 { "name": "hitBreakpoints", "type": "array", "items": { "typ e": "string" }, "description": "Hit breakpoints IDs", "hidden": true }
pfeldman 2013/06/06 18:10:28 Should be "$ref": "BreakpointId", not type:string.
3053 ], 3054 ],
3054 "description": "Fired when the virtual machine stopped on breakp oint or exception or any other stop criteria." 3055 "description": "Fired when the virtual machine stopped on breakp oint or exception or any other stop criteria."
3055 }, 3056 },
3056 { 3057 {
3057 "name": "resumed", 3058 "name": "resumed",
3058 "description": "Fired when the virtual machine resumed execution ." 3059 "description": "Fired when the virtual machine resumed execution ."
3059 } 3060 }
3060 ] 3061 ]
3061 }, 3062 },
3062 { 3063 {
(...skipping 688 matching lines...) Expand 10 before | Expand all | Expand 10 after
3751 ] 3752 ]
3752 } 3753 }
3753 ], 3754 ],
3754 "events": [ 3755 "events": [
3755 { 3756 {
3756 "name": "layerTreeDidChange" 3757 "name": "layerTreeDidChange"
3757 } 3758 }
3758 ] 3759 ]
3759 }] 3760 }]
3760 } 3761 }
OLDNEW
« no previous file with comments | « Source/devtools/front_end/DebuggerModel.js ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698