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

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

Issue 12089062: Move API functions registrations out of ExtensionFunctionRegistry. (Closed) Base URL: http://src.chromium.org/svn/trunk/src/
Patch Set: Created 7 years, 10 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
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": "terminalPrivate", 7 "namespace": "terminalPrivate",
8 "compiler_options": {
9 "implemented_in": "chrome/browser/extensions/api/terminal/terminal_private _api.h"
10 },
8 "nodoc": true, 11 "nodoc": true,
9 "platforms": ["chromeos"], 12 "platforms": ["chromeos"],
10 "types": [], 13 "types": [],
11 "functions": [ 14 "functions": [
12 { 15 {
13 "name": "openTerminalProcess", 16 "name": "openTerminalProcess",
14 "type": "function", 17 "type": "function",
15 "description": "Starts new process.", 18 "description": "Starts new process.",
16 "parameters": [ 19 "parameters": [
17 { 20 {
(...skipping 124 matching lines...) Expand 10 before | Expand all | Expand 10 after
142 { 145 {
143 "name": "text", 146 "name": "text",
144 "type": "string", 147 "type": "string",
145 "description": "Text that was written to the output stream." 148 "description": "Text that was written to the output stream."
146 } 149 }
147 ] 150 ]
148 } 151 }
149 ] 152 ]
150 } 153 }
151 ] 154 ]
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698