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

Side by Side Diff: chrome/common/extensions/api/file_manager_private.idl

Issue 2580303002: mediaview: Mount ARC documents provider file system volumes. (Closed)
Patch Set: Consistently use GetGlobalService(). Created 3 years, 11 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
« no previous file with comments | « chrome/browser/chromeos/fileapi/file_system_backend.cc ('k') | components/arc/BUILD.gn » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 // Copyright 2013 The Chromium Authors. All rights reserved. 1 // Copyright 2013 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 // fileManagerPrivate API. 5 // fileManagerPrivate API.
6 // This is a private API used by the file browser of ChromeOS. 6 // This is a private API used by the file browser of ChromeOS.
7 [platforms=("chromeos"), 7 [platforms=("chromeos"),
8 implemented_in="chrome/browser/chromeos/extensions/file_manager/file_manager_pr ivate_api_functions.h"] 8 implemented_in="chrome/browser/chromeos/extensions/file_manager/file_manager_pr ivate_api_functions.h"]
9 namespace fileManagerPrivate { 9 namespace fileManagerPrivate {
10 // Type of the mounted volume. 10 // Type of the mounted volume.
11 enum VolumeType { drive, downloads, removable, archive, provided, mtp, 11 enum VolumeType { drive, downloads, removable, archive, provided, mtp,
12 testing }; 12 media_view, testing };
13 13
14 // Device type. Available if this is removable volume. 14 // Device type. Available if this is removable volume.
15 enum DeviceType { usb, sd, optical, mobile, unknown }; 15 enum DeviceType { usb, sd, optical, mobile, unknown };
16 16
17 // Additional data about mount, for example, that the filesystem is not 17 // Additional data about mount, for example, that the filesystem is not
18 // supported. 18 // supported.
19 enum MountCondition { unknown, unsupported }; 19 enum MountCondition { unknown, unsupported };
20 20
21 // Additional information of the context the volume was mounted. 21 // Additional information of the context the volume was mounted.
22 enum MountContext { user, auto }; 22 enum MountContext { user, auto };
(...skipping 979 matching lines...) Expand 10 before | Expand all | Expand 10 after
1002 1002
1003 static void onDriveConnectionStatusChanged(); 1003 static void onDriveConnectionStatusChanged();
1004 1004
1005 static void onDeviceChanged(DeviceEvent event); 1005 static void onDeviceChanged(DeviceEvent event);
1006 1006
1007 static void onDriveSyncError(DriveSyncErrorEvent event); 1007 static void onDriveSyncError(DriveSyncErrorEvent event);
1008 1008
1009 static void onAppsUpdated(); 1009 static void onAppsUpdated();
1010 }; 1010 };
1011 }; 1011 };
OLDNEW
« no previous file with comments | « chrome/browser/chromeos/fileapi/file_system_backend.cc ('k') | components/arc/BUILD.gn » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698