Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(179)

Side by Side Diff: third_party/closure_compiler/externs/file_manager_private.js

Issue 1137383002: Show the eject button only for removabled and file handlers. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Fixed tests. Created 5 years, 7 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
OLDNEW
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 42 matching lines...) Expand 10 before | Expand all | Expand 10 after
53 * isCurrentProfile: boolean 53 * isCurrentProfile: boolean
54 * }} 54 * }}
55 */ 55 */
56 var ProfileInfo; 56 var ProfileInfo;
57 57
58 /** 58 /**
59 * @typedef {{ 59 * @typedef {{
60 * volumeId: string, 60 * volumeId: string,
61 * fileSystemId: (string|undefined), 61 * fileSystemId: (string|undefined),
62 * extensionId: (string|undefined), 62 * extensionId: (string|undefined),
63 * source: string,
63 * volumeLabel: (string|undefined), 64 * volumeLabel: (string|undefined),
64 * profile: ProfileInfo, 65 * profile: ProfileInfo,
65 * sourcePath: (string|undefined), 66 * sourcePath: (string|undefined),
66 * volumeType: string, 67 * volumeType: string,
67 * deviceType: (string|undefined), 68 * deviceType: (string|undefined),
68 * devicePath: (string|undefined), 69 * devicePath: (string|undefined),
69 * isParentDevice: (boolean|undefined), 70 * isParentDevice: (boolean|undefined),
70 * isReadOnly: boolean, 71 * isReadOnly: boolean,
71 * hasMedia: boolean, 72 * hasMedia: boolean,
73 * configurable: boolean,
72 * mountCondition: (string|undefined), 74 * mountCondition: (string|undefined),
73 * mountContext: (string|undefined) 75 * mountContext: (string|undefined)
74 * }} 76 * }}
75 */ 77 */
76 var VolumeMetadata; 78 var VolumeMetadata;
77 79
78 /** 80 /**
79 * @typedef {{ 81 * @typedef {{
80 * eventType: string, 82 * eventType: string,
81 * status: string, 83 * status: string,
(...skipping 550 matching lines...) Expand 10 before | Expand all | Expand 10 after
632 chrome.fileManagerPrivate.onPreferencesChanged; 634 chrome.fileManagerPrivate.onPreferencesChanged;
633 635
634 /** @type {!ChromeEvent} */ 636 /** @type {!ChromeEvent} */
635 chrome.fileManagerPrivate.onDriveConnectionStatusChanged; 637 chrome.fileManagerPrivate.onDriveConnectionStatusChanged;
636 638
637 /** @type {!ChromeEvent} */ 639 /** @type {!ChromeEvent} */
638 chrome.fileManagerPrivate.onDeviceChanged; 640 chrome.fileManagerPrivate.onDeviceChanged;
639 641
640 /** @type {!ChromeEvent} */ 642 /** @type {!ChromeEvent} */
641 chrome.fileManagerPrivate.onDriveSyncError; 643 chrome.fileManagerPrivate.onDriveSyncError;
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698