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 597 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
608 */ | 608 */ |
609 chrome.fileManagerPrivate.addProvidedFileSystem = | 609 chrome.fileManagerPrivate.addProvidedFileSystem = |
610 function(extensionId, callback) {}; | 610 function(extensionId, callback) {}; |
611 | 611 |
612 /** | 612 /** |
613 * Requests configuring an existing file system. If not possible, then returns | 613 * Requests configuring an existing file system. If not possible, then returns |
614 * an error via chrome.runtime.lastError. | 614 * an error via chrome.runtime.lastError. |
615 * @param {string} volumeId | 615 * @param {string} volumeId |
616 * @param {function()} callback | 616 * @param {function()} callback |
617 */ | 617 */ |
618 chrome.fileManagerPrivate.configureProvidedFileSystem = | 618 chrome.fileManagerPrivate.configureVolume = function(volumeId, callback) {}; |
619 function(volumeId, callback) {}; | |
620 | 619 |
621 /** @type {!ChromeEvent} */ | 620 /** @type {!ChromeEvent} */ |
622 chrome.fileManagerPrivate.onMountCompleted; | 621 chrome.fileManagerPrivate.onMountCompleted; |
623 | 622 |
624 /** @type {!ChromeEvent} */ | 623 /** @type {!ChromeEvent} */ |
625 chrome.fileManagerPrivate.onFileTransfersUpdated; | 624 chrome.fileManagerPrivate.onFileTransfersUpdated; |
626 | 625 |
627 /** @type {!ChromeEvent} */ | 626 /** @type {!ChromeEvent} */ |
628 chrome.fileManagerPrivate.onCopyProgress; | 627 chrome.fileManagerPrivate.onCopyProgress; |
629 | 628 |
630 /** @type {!ChromeEvent} */ | 629 /** @type {!ChromeEvent} */ |
631 chrome.fileManagerPrivate.onDirectoryChanged; | 630 chrome.fileManagerPrivate.onDirectoryChanged; |
632 | 631 |
633 /** @type {!ChromeEvent} */ | 632 /** @type {!ChromeEvent} */ |
634 chrome.fileManagerPrivate.onPreferencesChanged; | 633 chrome.fileManagerPrivate.onPreferencesChanged; |
635 | 634 |
636 /** @type {!ChromeEvent} */ | 635 /** @type {!ChromeEvent} */ |
637 chrome.fileManagerPrivate.onDriveConnectionStatusChanged; | 636 chrome.fileManagerPrivate.onDriveConnectionStatusChanged; |
638 | 637 |
639 /** @type {!ChromeEvent} */ | 638 /** @type {!ChromeEvent} */ |
640 chrome.fileManagerPrivate.onDeviceChanged; | 639 chrome.fileManagerPrivate.onDeviceChanged; |
641 | 640 |
642 /** @type {!ChromeEvent} */ | 641 /** @type {!ChromeEvent} */ |
643 chrome.fileManagerPrivate.onDriveSyncError; | 642 chrome.fileManagerPrivate.onDriveSyncError; |
OLD | NEW |