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":"fileBrowserPrivate", | 7 "namespace":"fileBrowserPrivate", |
8 "compiler_options": { | 8 "compiler_options": { |
9 "implemented_in": "chrome/browser/chromeos/extensions/file_manager/file_br
owser_private_api_functions.h" | 9 "implemented_in": "chrome/browser/chromeos/extensions/file_manager/file_br
owser_private_api_functions.h" |
10 }, | 10 }, |
(...skipping 10 matching lines...) Expand all Loading... |
21 "description": "The unique identifier of the task." | 21 "description": "The unique identifier of the task." |
22 }, | 22 }, |
23 "title": { | 23 "title": { |
24 "type": "string", | 24 "type": "string", |
25 "description": "Task title (ex. App name)." | 25 "description": "Task title (ex. App name)." |
26 }, | 26 }, |
27 "iconUrl": { | 27 "iconUrl": { |
28 "type": "string", | 28 "type": "string", |
29 "description": "Task icon url (from chrome://extension-icon/...)" | 29 "description": "Task icon url (from chrome://extension-icon/...)" |
30 }, | 30 }, |
31 "driveApp": { | |
32 "type": "boolean", | |
33 "description": "True if this is Drive App." | |
34 }, | |
35 "isDefault": { | 31 "isDefault": { |
36 "type": "boolean", | 32 "type": "boolean", |
37 "description": "True if this task is a default task for the selected
files." | 33 "description": "True if this task is a default task for the selected
files." |
38 } | 34 } |
39 } | 35 } |
40 }, | 36 }, |
41 { | 37 { |
42 "id": "VolumeInfo", | 38 "id": "VolumeInfo", |
43 "type": "object", | 39 "type": "object", |
44 "description": "Mounted disk volume information.", | 40 "description": "Mounted disk volume information.", |
(...skipping 1277 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1322 }, | 1318 }, |
1323 { | 1319 { |
1324 "name": "onDriveConnectionStatusChanged", | 1320 "name": "onDriveConnectionStatusChanged", |
1325 "type": "function", | 1321 "type": "function", |
1326 "description": "Fired when the active network connection state changes.
The network connection state can be retrieved via 'getDriveConnectionState'.", | 1322 "description": "Fired when the active network connection state changes.
The network connection state can be retrieved via 'getDriveConnectionState'.", |
1327 "parameters": [] | 1323 "parameters": [] |
1328 } | 1324 } |
1329 ] | 1325 ] |
1330 } | 1326 } |
1331 ] | 1327 ] |
OLD | NEW |