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

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

Issue 2451713002: Propagate the read_only_hardware flag of volumes to js. (Closed)
Patch Set: Rename the field name to is_read_only_removable_device, as it's only valid for removable devices. Created 4 years, 1 month 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
« no previous file with comments | « chrome/test/data/extensions/api_test/file_browser/mount_test/test.js ('k') | no next file » | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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 51 matching lines...) Expand 10 before | Expand all | Expand 10 after
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
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 };
OLDNEW
« no previous file with comments | « chrome/test/data/extensions/api_test/file_browser/mount_test/test.js ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698