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": "experimental.processes", | 7 "namespace": "processes", |
8 "description": "Use the <code>chrome.experimental.processes</code> API to in
teract with the browser's processes.", | 8 "description": "Use the <code>chrome.processes</code> API to interact with t
he browser's processes.", |
9 "types": [ | 9 "types": [ |
10 { | 10 { |
11 "id": "Process", | 11 "id": "Process", |
12 "type": "object", | 12 "type": "object", |
13 "description": "An object containing information about one of the browse
r's processes.", | 13 "description": "An object containing information about one of the browse
r's processes.", |
14 "properties": { | 14 "properties": { |
15 "id": { | 15 "id": { |
16 "type": "integer", | 16 "type": "integer", |
17 "description": "Unique ID of the process provided by the browser." | 17 "description": "Unique ID of the process provided by the browser." |
18 }, | 18 }, |
(...skipping 235 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
254 { | 254 { |
255 "name": "exitCode", | 255 "name": "exitCode", |
256 "description": "The exit code if the process exited abnormally. Only
available for renderer processes.", | 256 "description": "The exit code if the process exited abnormally. Only
available for renderer processes.", |
257 "type": "integer" | 257 "type": "integer" |
258 } | 258 } |
259 ] | 259 ] |
260 } | 260 } |
261 ] | 261 ] |
262 } | 262 } |
263 ] | 263 ] |
OLD | NEW |