| 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 * taskId: string, | 9 * taskId: string, |
| 10 * title: string, | 10 * title: string, |
| (...skipping 71 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 82 * shouldNotify: boolean | 82 * shouldNotify: boolean |
| 83 * }} | 83 * }} |
| 84 */ | 84 */ |
| 85 var MountCompletedEvent; | 85 var MountCompletedEvent; |
| 86 | 86 |
| 87 /** | 87 /** |
| 88 * @typedef {{ | 88 * @typedef {{ |
| 89 * fileUrl: string, | 89 * fileUrl: string, |
| 90 * transferState: string, | 90 * transferState: string, |
| 91 * transferType: string, | 91 * transferType: string, |
| 92 * processed: (number|undefined), | 92 * processed: number, |
| 93 * total: (number|undefined), | 93 * total: number, |
| 94 * num_total_jobs: number | 94 * num_total_jobs: number |
| 95 * }} | 95 * }} |
| 96 */ | 96 */ |
| 97 var FileTransferStatus; | 97 var FileTransferStatus; |
| 98 | 98 |
| 99 /** | 99 /** |
| 100 * @typedef {{ | 100 * @typedef {{ |
| 101 * type: string, | 101 * type: string, |
| 102 * fileUrl: string | 102 * fileUrl: string |
| 103 * }} | 103 * }} |
| (...skipping 487 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 591 chrome.fileManagerPrivate.onPreferencesChanged; | 591 chrome.fileManagerPrivate.onPreferencesChanged; |
| 592 | 592 |
| 593 /** @type {!ChromeEvent} */ | 593 /** @type {!ChromeEvent} */ |
| 594 chrome.fileManagerPrivate.onDriveConnectionStatusChanged; | 594 chrome.fileManagerPrivate.onDriveConnectionStatusChanged; |
| 595 | 595 |
| 596 /** @type {!ChromeEvent} */ | 596 /** @type {!ChromeEvent} */ |
| 597 chrome.fileManagerPrivate.onDeviceChanged; | 597 chrome.fileManagerPrivate.onDeviceChanged; |
| 598 | 598 |
| 599 /** @type {!ChromeEvent} */ | 599 /** @type {!ChromeEvent} */ |
| 600 chrome.fileManagerPrivate.onDriveSyncError; | 600 chrome.fileManagerPrivate.onDriveSyncError; |
| OLD | NEW |