OLD | NEW |
1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. |
2 // Use of this source code is governed by a BSD-style license that can be | 2 // Use of this source code is governed by a BSD-style license that can be |
3 // found in the LICENSE file. | 3 // found in the LICENSE file. |
4 | 4 |
5 [ | 5 [ |
6 { | 6 { |
7 "namespace": "debugger", | 7 "namespace": "debugger", |
8 "types": [ | 8 "types": [ |
9 { | 9 { |
10 "id": "Debuggee", | 10 "id": "Debuggee", |
(...skipping 58 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
69 "name": "target", | 69 "name": "target", |
70 "description": "Debugging target to which you want to send the comma
nd." | 70 "description": "Debugging target to which you want to send the comma
nd." |
71 }, | 71 }, |
72 { | 72 { |
73 "type": "string", | 73 "type": "string", |
74 "name": "method", | 74 "name": "method", |
75 "description": "Method name. Should be one of the methods defined by
the <a href='http://code.google.com/chrome/devtools/docs/remote-debugging.html'
>remote debugging protocol</a>." | 75 "description": "Method name. Should be one of the methods defined by
the <a href='http://code.google.com/chrome/devtools/docs/remote-debugging.html'
>remote debugging protocol</a>." |
76 }, | 76 }, |
77 { | 77 { |
78 "type": "object", | 78 "type": "object", |
79 "name": "params", | 79 "name": "commandParams", |
80 "optional": true, | 80 "optional": true, |
81 "additionalProperties": { "type": "any" }, | 81 "additionalProperties": { "type": "any" }, |
82 "description": "JSON object with request parameters. This object mus
t conform to the remote debugging params scheme for given method." | 82 "description": "JSON object with request parameters. This object mus
t conform to the remote debugging params scheme for given method." |
83 }, | 83 }, |
84 { | 84 { |
85 "type": "function", | 85 "type": "function", |
86 "name": "callback", | 86 "name": "callback", |
87 "optional": true, | 87 "optional": true, |
88 "parameters": [ | 88 "parameters": [ |
89 { | 89 { |
(...skipping 42 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
132 { | 132 { |
133 "$ref": "Debuggee", | 133 "$ref": "Debuggee", |
134 "name": "source", | 134 "name": "source", |
135 "description": "The debuggee that was detached." | 135 "description": "The debuggee that was detached." |
136 } | 136 } |
137 ] | 137 ] |
138 } | 138 } |
139 ] | 139 ] |
140 } | 140 } |
141 ] | 141 ] |
OLD | NEW |