OLD | NEW |
1 // Copyright 2014 The Chromium Authors. All rights reserved. | 1 // Copyright 2014 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 /** @fileoverview Externs generated from namespace: fileManagerPrivate */ | 5 /** @fileoverview Externs generated from namespace: fileManagerPrivate */ |
6 | 6 |
7 /** | 7 /** |
8 * @typedef {{ | 8 * @typedef {{ |
9 * scale1xUrl: string, | 9 * scale1xUrl: string, |
10 * scale2xUrl: string | 10 * scale2xUrl: string |
11 * }} | 11 * }} |
12 */ | 12 */ |
13 var ImageSet; | 13 var ImageSet; |
14 | 14 |
15 /** | 15 /** |
16 * @typedef {{ | 16 * @typedef {{ |
17 * taskId: string, | 17 * taskId: string, |
18 * title: string, | 18 * title: string, |
19 * iconUrl: string, | 19 * iconUrl: string, |
20 * isDefault: boolean | 20 * isDefault: boolean |
21 * }} | 21 * }} |
22 */ | 22 */ |
23 var FileTask; | 23 var FileTask; |
24 | 24 |
25 /** | 25 /** |
26 * @typedef {{ | 26 * @typedef {{ |
27 * fileSize: (number|undefined), | 27 * fileSize: (number|undefined), |
28 * lastModifiedTime: (number|undefined), | 28 * lastModifiedTime: (number|undefined), |
29 * thumbnailUrl: (string|undefined), | 29 * thumbnailUrl: (string|undefined), |
| 30 * externalFileUrl: (string|undefined), |
30 * imageWidth: (number|undefined), | 31 * imageWidth: (number|undefined), |
31 * imageHeight: (number|undefined), | 32 * imageHeight: (number|undefined), |
32 * imageRotation: (number|undefined), | 33 * imageRotation: (number|undefined), |
33 * isPinned: (boolean|undefined), | 34 * isPinned: (boolean|undefined), |
34 * isPresent: (boolean|undefined), | 35 * isPresent: (boolean|undefined), |
35 * isHosted: (boolean|undefined), | 36 * isHosted: (boolean|undefined), |
| 37 * isDirty: (boolean|undefined), |
36 * isAvailableOffline: (boolean|undefined), | 38 * isAvailableOffline: (boolean|undefined), |
37 * isAvailableWhenMetered: (boolean|undefined), | 39 * isAvailableWhenMetered: (boolean|undefined), |
38 * customIconUrl: (string|undefined), | 40 * customIconUrl: (string|undefined), |
39 * contentMimeType: (string|undefined), | 41 * contentMimeType: (string|undefined), |
40 * sharedWithMe: (boolean|undefined), | 42 * sharedWithMe: (boolean|undefined), |
41 * shared: (boolean|undefined) | 43 * shared: (boolean|undefined) |
42 * }} | 44 * }} |
43 */ | 45 */ |
44 var EntryProperties; | 46 var EntryProperties; |
45 | 47 |
(...skipping 518 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
564 chrome.fileManagerPrivate.onPreferencesChanged; | 566 chrome.fileManagerPrivate.onPreferencesChanged; |
565 | 567 |
566 /** @type {!ChromeEvent} */ | 568 /** @type {!ChromeEvent} */ |
567 chrome.fileManagerPrivate.onDriveConnectionStatusChanged; | 569 chrome.fileManagerPrivate.onDriveConnectionStatusChanged; |
568 | 570 |
569 /** @type {!ChromeEvent} */ | 571 /** @type {!ChromeEvent} */ |
570 chrome.fileManagerPrivate.onDeviceChanged; | 572 chrome.fileManagerPrivate.onDeviceChanged; |
571 | 573 |
572 /** @type {!ChromeEvent} */ | 574 /** @type {!ChromeEvent} */ |
573 chrome.fileManagerPrivate.onDriveSyncError; | 575 chrome.fileManagerPrivate.onDriveSyncError; |
OLD | NEW |