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":"webstorePrivate", | 7 "namespace":"webstorePrivate", |
8 "nodoc": "true", | 8 "nodoc": "true", |
9 "functions": [ | 9 "functions": [ |
10 { | 10 { |
11 "name": "install", | 11 "name": "install", |
| 12 "nocompile": true, |
12 "description": "Installs the extension corresponding to the given id", | 13 "description": "Installs the extension corresponding to the given id", |
13 "parameters": [ | 14 "parameters": [ |
14 { | 15 { |
15 "name": "expected_id", | 16 "name": "expected_id", |
16 "type": "string", | 17 "type": "string", |
17 "description": "The id of the extension to install." | 18 "description": "The id of the extension to install." |
18 }, | 19 }, |
19 { | 20 { |
20 "name": "callback", | 21 "name": "callback", |
21 "type": "function", | 22 "type": "function", |
(...skipping 181 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
203 "type": "string", | 204 "type": "string", |
204 "enum": ["webgl_allowed", "webgl_blocked"] | 205 "enum": ["webgl_allowed", "webgl_blocked"] |
205 } | 206 } |
206 ] | 207 ] |
207 } | 208 } |
208 ] | 209 ] |
209 } | 210 } |
210 ] | 211 ] |
211 } | 212 } |
212 ] | 213 ] |
OLD | NEW |