OLD | NEW |
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. |
(...skipping 221 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
232 // Profile ID. This is currently e-mail address of the profile. | 232 // Profile ID. This is currently e-mail address of the profile. |
233 DOMString profileId; | 233 DOMString profileId; |
234 | 234 |
235 // The name of the profile for display purpose. | 235 // The name of the profile for display purpose. |
236 DOMString displayName; | 236 DOMString displayName; |
237 | 237 |
238 // True if the profile is the one running the current file manager instance. | 238 // True if the profile is the one running the current file manager instance. |
239 // TODO(hirono): Remove the property because of the design change of | 239 // TODO(hirono): Remove the property because of the design change of |
240 // multi-profile suuport. | 240 // multi-profile suuport. |
241 boolean isCurrentProfile; | 241 boolean isCurrentProfile; |
242 | |
243 // Image set of profile image. | |
244 ImageSet? profileImage; | |
245 }; | 242 }; |
246 | 243 |
247 // Mounted disk volume metadata. | 244 // Mounted disk volume metadata. |
248 dictionary VolumeMetadata { | 245 dictionary VolumeMetadata { |
249 // ID of the disk volume. | 246 // ID of the disk volume. |
250 DOMString volumeId; | 247 DOMString volumeId; |
251 | 248 |
252 // Id the provided file system (for proviided file systems). | 249 // Id the provided file system (for proviided file systems). |
253 DOMString? fileSystemId; | 250 DOMString? fileSystemId; |
254 | 251 |
(...skipping 566 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
821 static void onDriveSyncError(DriveSyncErrorEvent event); | 818 static void onDriveSyncError(DriveSyncErrorEvent event); |
822 | 819 |
823 // Dispatched when a profile is added. | 820 // Dispatched when a profile is added. |
824 static void onProfileAdded(); | 821 static void onProfileAdded(); |
825 | 822 |
826 // Dispatched when any window moves another desktop. | 823 // Dispatched when any window moves another desktop. |
827 // TODO(hirono): Add information which window is moved. | 824 // TODO(hirono): Add information which window is moved. |
828 static void onDesktopChanged(); | 825 static void onDesktopChanged(); |
829 }; | 826 }; |
830 }; | 827 }; |
OLD | NEW |