| 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 674 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 685 | 685 |
| 686 /** @type {!ChromeEvent} */ | 686 /** @type {!ChromeEvent} */ |
| 687 chrome.fileManagerPrivate.onDriveConnectionStatusChanged; | 687 chrome.fileManagerPrivate.onDriveConnectionStatusChanged; |
| 688 | 688 |
| 689 /** @type {!ChromeEvent} */ | 689 /** @type {!ChromeEvent} */ |
| 690 chrome.fileManagerPrivate.onDeviceChanged; | 690 chrome.fileManagerPrivate.onDeviceChanged; |
| 691 | 691 |
| 692 /** @type {!ChromeEvent} */ | 692 /** @type {!ChromeEvent} */ |
| 693 chrome.fileManagerPrivate.onDriveSyncError; | 693 chrome.fileManagerPrivate.onDriveSyncError; |
| 694 | 694 |
| 695 /** @type {!ChromeEvent} */ |
| 696 chrome.fileManagerPrivate.onAppsUpdated; |
| 697 |
| 695 /** @enum {string} */ | 698 /** @enum {string} */ |
| 696 chrome.fileManagerPrivate.Verb = { | 699 chrome.fileManagerPrivate.Verb = { |
| 697 OPEN_WITH: 'open_with', | 700 OPEN_WITH: 'open_with', |
| 698 ADD_TO: 'add_to', | 701 ADD_TO: 'add_to', |
| 699 PACK_WITH: 'pack_with', | 702 PACK_WITH: 'pack_with', |
| 700 SHARE_WITH: 'share_with', | 703 SHARE_WITH: 'share_with', |
| 701 }; | 704 }; |
| OLD | NEW |