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

Side by Side Diff: chrome/common/extensions/api/debugger.json

Issue 10803043: Refactor chrome.debugger api to use the JSON schema compiler. Also modified the (Closed) Base URL: http://git.chromium.org/chromium/src.git@master
Patch Set: s/dictionary/result Created 8 years, 5 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 | « chrome/common/extensions/api/api.gyp ('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 // 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
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
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 ]
OLDNEW
« no previous file with comments | « chrome/common/extensions/api/api.gyp ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698