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 "nodoc": "true", | 8 "nodoc": "true", |
9 "types": [ | 9 "types": [ |
10 { | 10 { |
11 "id": "FileBrowserTask", | 11 "id": "FileBrowserTask", |
12 "type": "object", | 12 "type": "object", |
13 "description": "Represents information about available browser tasks. A
task is an abstraction of an operation that the file browser can perform over a
selected file set.", | 13 "description": "Represents information about available browser tasks. A
task is an abstraction of an operation that the file browser can perform over a
selected file set.", |
14 "properties": { | 14 "properties": { |
15 "taskId": {"type": "string", "description": "The unique identifier of
the task."}, | 15 "taskId": {"type": "string", "description": "The unique identifier of
the task."}, |
16 "title": {"type": "string", "description": "Task title."}, | 16 "title": {"type": "string", "description": "Task title."}, |
17 "iconUrl": {"type": "string", "description": "Task icon url (from chro
me://extension-icon/...)"}, | 17 "iconUrl": {"type": "string", "description": "Task icon url (from chro
me://extension-icon/...)"}, |
| 18 "driveApp": {"type": "boolean", "description": "True if this is Drive
App."}, |
18 "patterns": { | 19 "patterns": { |
19 "type": "array", | 20 "type": "array", |
20 "items": { "type": "string" }, | 21 "items": { "type": "string" }, |
21 "description": "The list of URL patterns supported by the task that
matched at least one file." | 22 "description": "The list of URL patterns supported by the task that
matched at least one file." |
22 } | 23 } |
23 } | 24 } |
24 }, | 25 }, |
25 { | 26 { |
26 "id": "VolumeInfo", | 27 "id": "VolumeInfo", |
27 "type": "object", | 28 "type": "object", |
(...skipping 1033 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1061 }, | 1062 }, |
1062 { | 1063 { |
1063 "name": "onNetworkConnectionChanged", | 1064 "name": "onNetworkConnectionChanged", |
1064 "type": "function", | 1065 "type": "function", |
1065 "description": "Fired when the active network connection state changes.
The network connection state can be retrieved via 'getNetworkConnectionState'.", | 1066 "description": "Fired when the active network connection state changes.
The network connection state can be retrieved via 'getNetworkConnectionState'.", |
1066 "parameters": [] | 1067 "parameters": [] |
1067 } | 1068 } |
1068 ] | 1069 ] |
1069 } | 1070 } |
1070 ] | 1071 ] |
OLD | NEW |