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

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

Issue 22584002: Move processes API to dev channel (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Rebased again Created 7 years, 4 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
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": "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
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 ]
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698