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

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

Issue 1848103005: [Extensions] Remove the "use_movable_types" entry from idl/json files (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 4 years, 8 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 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 use_movable_types=true]
10 namespace fileManagerPrivate { 9 namespace fileManagerPrivate {
11 // Type of the mounted volume. 10 // Type of the mounted volume.
12 enum VolumeType { drive, downloads, removable, archive, provided, mtp, 11 enum VolumeType { drive, downloads, removable, archive, provided, mtp,
13 testing }; 12 testing };
14 13
15 // Device type. Available if this is removable volume. 14 // Device type. Available if this is removable volume.
16 enum DeviceType { usb, sd, optical, mobile, unknown }; 15 enum DeviceType { usb, sd, optical, mobile, unknown };
17 16
18 // Additional data about mount, for example, that the filesystem is not 17 // Additional data about mount, for example, that the filesystem is not
19 // supported. 18 // supported.
(...skipping 950 matching lines...) Expand 10 before | Expand all | Expand 10 after
970 969
971 static void onPreferencesChanged(); 970 static void onPreferencesChanged();
972 971
973 static void onDriveConnectionStatusChanged(); 972 static void onDriveConnectionStatusChanged();
974 973
975 static void onDeviceChanged(DeviceEvent event); 974 static void onDeviceChanged(DeviceEvent event);
976 975
977 static void onDriveSyncError(DriveSyncErrorEvent event); 976 static void onDriveSyncError(DriveSyncErrorEvent event);
978 }; 977 };
979 }; 978 };
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698