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 556 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
567 /** | 567 /** |
568 * Sets a tag on a file or a directory. Only Drive files are supported. | 568 * Sets a tag on a file or a directory. Only Drive files are supported. |
569 * @param {string} entryURL | 569 * @param {string} entryURL |
570 * @param {string} visibility 'private' or 'public' | 570 * @param {string} visibility 'private' or 'public' |
571 * @param {string} key | 571 * @param {string} key |
572 * @param {string} value | 572 * @param {string} value |
573 * @param {function()} callback | 573 * @param {function()} callback |
574 */ | 574 */ |
575 chrome.fileManagerPrivate.setEntryTag = function(entryURL, visibility, key, valu
e, callback) {}; | 575 chrome.fileManagerPrivate.setEntryTag = function(entryURL, visibility, key, valu
e, callback) {}; |
576 | 576 |
| 577 /** |
| 578 * Gets a flag indicating whether PiexLoader is enabled. |
| 579 * @param {function(boolean)} callback |
| 580 */ |
| 581 chrome.fileManagerPrivate.isPiexLoaderEnabled = function(callback) {}; |
| 582 |
577 /** @type {!ChromeEvent} */ | 583 /** @type {!ChromeEvent} */ |
578 chrome.fileManagerPrivate.onMountCompleted; | 584 chrome.fileManagerPrivate.onMountCompleted; |
579 | 585 |
580 /** @type {!ChromeEvent} */ | 586 /** @type {!ChromeEvent} */ |
581 chrome.fileManagerPrivate.onFileTransfersUpdated; | 587 chrome.fileManagerPrivate.onFileTransfersUpdated; |
582 | 588 |
583 /** @type {!ChromeEvent} */ | 589 /** @type {!ChromeEvent} */ |
584 chrome.fileManagerPrivate.onCopyProgress; | 590 chrome.fileManagerPrivate.onCopyProgress; |
585 | 591 |
586 /** @type {!ChromeEvent} */ | 592 /** @type {!ChromeEvent} */ |
587 chrome.fileManagerPrivate.onDirectoryChanged; | 593 chrome.fileManagerPrivate.onDirectoryChanged; |
588 | 594 |
589 /** @type {!ChromeEvent} */ | 595 /** @type {!ChromeEvent} */ |
590 chrome.fileManagerPrivate.onPreferencesChanged; | 596 chrome.fileManagerPrivate.onPreferencesChanged; |
591 | 597 |
592 /** @type {!ChromeEvent} */ | 598 /** @type {!ChromeEvent} */ |
593 chrome.fileManagerPrivate.onDriveConnectionStatusChanged; | 599 chrome.fileManagerPrivate.onDriveConnectionStatusChanged; |
594 | 600 |
595 /** @type {!ChromeEvent} */ | 601 /** @type {!ChromeEvent} */ |
596 chrome.fileManagerPrivate.onDeviceChanged; | 602 chrome.fileManagerPrivate.onDeviceChanged; |
597 | 603 |
598 /** @type {!ChromeEvent} */ | 604 /** @type {!ChromeEvent} */ |
599 chrome.fileManagerPrivate.onDriveSyncError; | 605 chrome.fileManagerPrivate.onDriveSyncError; |
OLD | NEW |