| 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 51 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 62 * extensionId: (string|undefined), | 62 * extensionId: (string|undefined), |
| 63 * source: string, | 63 * source: string, |
| 64 * volumeLabel: (string|undefined), | 64 * volumeLabel: (string|undefined), |
| 65 * profile: ProfileInfo, | 65 * profile: ProfileInfo, |
| 66 * sourcePath: (string|undefined), | 66 * sourcePath: (string|undefined), |
| 67 * volumeType: string, | 67 * volumeType: string, |
| 68 * deviceType: (string|undefined), | 68 * deviceType: (string|undefined), |
| 69 * devicePath: (string|undefined), | 69 * devicePath: (string|undefined), |
| 70 * isParentDevice: (boolean|undefined), | 70 * isParentDevice: (boolean|undefined), |
| 71 * isReadOnly: boolean, | 71 * isReadOnly: boolean, |
| 72 * isReadOnlyRemovableDevice: boolean, |
| 72 * hasMedia: boolean, | 73 * hasMedia: boolean, |
| 73 * configurable: boolean, | 74 * configurable: boolean, |
| 74 * watchable: boolean, | 75 * watchable: boolean, |
| 75 * mountCondition: (string|undefined), | 76 * mountCondition: (string|undefined), |
| 76 * mountContext: (string|undefined) | 77 * mountContext: (string|undefined) |
| 77 * }} | 78 * }} |
| 78 */ | 79 */ |
| 79 var VolumeMetadata; | 80 var VolumeMetadata; |
| 80 | 81 |
| 81 /** | 82 /** |
| (...skipping 609 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 691 /** @type {!ChromeEvent} */ | 692 /** @type {!ChromeEvent} */ |
| 692 chrome.fileManagerPrivate.onDriveSyncError; | 693 chrome.fileManagerPrivate.onDriveSyncError; |
| 693 | 694 |
| 694 /** @enum {string} */ | 695 /** @enum {string} */ |
| 695 chrome.fileManagerPrivate.Verb = { | 696 chrome.fileManagerPrivate.Verb = { |
| 696 OPEN_WITH: 'open_with', | 697 OPEN_WITH: 'open_with', |
| 697 ADD_TO: 'add_to', | 698 ADD_TO: 'add_to', |
| 698 PACK_WITH: 'pack_with', | 699 PACK_WITH: 'pack_with', |
| 699 SHARE_WITH: 'share_with', | 700 SHARE_WITH: 'share_with', |
| 700 }; | 701 }; |
| OLD | NEW |