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

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

Issue 192573002: [fsp] Introduce file_system_provider::Service class for the FileSystemProvider API. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Simplified. Created 6 years, 9 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 | Annotate | Revision Log
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 // fileBrowserPrivate API. 5 // fileBrowserPrivate 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_browser_pr ivate_api_functions.h"] 8 implemented_in="chrome/browser/chromeos/extensions/file_manager/file_browser_pr ivate_api_functions.h"]
9 namespace fileBrowserPrivate { 9 namespace fileBrowserPrivate {
10 // Type of the mounted volume. 10 // Type of the mounted volume.
11 enum VolumeType { drive, downloads, removable, archive, cloud_device, testing }; 11 enum VolumeType { drive, downloads, removable, archive, cloud_device, provided,
12 testing };
12 13
13 // Device type. Available if this is removable volume. 14 // Device type. Available if this is removable volume.
14 enum DeviceType { usb, sd, optical, mobile, unknown }; 15 enum DeviceType { usb, sd, optical, mobile, unknown };
15 16
16 // Additional data about mount, for example, that the filesystem is not 17 // Additional data about mount, for example, that the filesystem is not
17 // supported. 18 // supported.
18 enum MountCondition { unknown, unsupported }; 19 enum MountCondition { unknown, unsupported };
19 20
20 // Is the event raised for mounting or unmounting. 21 // Is the event raised for mounting or unmounting.
21 enum MountCompletedEventType { mount, unmount }; 22 enum MountCompletedEventType { mount, unmount };
(...skipping 722 matching lines...) Expand 10 before | Expand all | Expand 10 after
744 static void onDriveSyncError(DriveSyncErrorEvent event); 745 static void onDriveSyncError(DriveSyncErrorEvent event);
745 746
746 // Dispatched when a profile is added. 747 // Dispatched when a profile is added.
747 static void onProfileAdded(); 748 static void onProfileAdded();
748 749
749 // Dispatched when any window moves another desktop. 750 // Dispatched when any window moves another desktop.
750 // TODO(hirono): Add information which window is moved. 751 // TODO(hirono): Add information which window is moved.
751 static void onDesktopChanged(); 752 static void onDesktopChanged();
752 }; 753 };
753 }; 754 };
OLDNEW
« no previous file with comments | « chrome/chrome_tests_unit.gypi ('k') | chrome/test/data/extensions/api_test/file_system_provider/mount/manifest.json » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698