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 // 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. |
(...skipping 149 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
160 DOMString taskId; | 160 DOMString taskId; |
161 | 161 |
162 // Task title (ex. App name). | 162 // Task title (ex. App name). |
163 DOMString title; | 163 DOMString title; |
164 | 164 |
165 // Task icon url (from chrome://extension-icon/...) | 165 // Task icon url (from chrome://extension-icon/...) |
166 DOMString iconUrl; | 166 DOMString iconUrl; |
167 | 167 |
168 // True if this task is a default task for the selected files. | 168 // True if this task is a default task for the selected files. |
169 boolean isDefault; | 169 boolean isDefault; |
170 | |
171 // True if this task is from generic file handler. | |
satorux1
2014/10/31 06:02:55
please also add some explanation about what is a g
yawano
2014/10/31 07:04:51
Done.
| |
172 boolean isGenericFileHandler; | |
170 }; | 173 }; |
171 | 174 |
172 // Additional entry properties. | 175 // Additional entry properties. |
173 dictionary EntryProperties { | 176 dictionary EntryProperties { |
174 // Size of this file. | 177 // Size of this file. |
175 double? fileSize; | 178 double? fileSize; |
176 | 179 |
177 // Timestamp of entry update time, in milliseconds past the epoch. | 180 // Timestamp of entry update time, in milliseconds past the epoch. |
178 double? lastModifiedTime; | 181 double? lastModifiedTime; |
179 | 182 |
(...skipping 624 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
804 | 807 |
805 static void onPreferencesChanged(); | 808 static void onPreferencesChanged(); |
806 | 809 |
807 static void onDriveConnectionStatusChanged(); | 810 static void onDriveConnectionStatusChanged(); |
808 | 811 |
809 static void onDeviceChanged(DeviceEvent event); | 812 static void onDeviceChanged(DeviceEvent event); |
810 | 813 |
811 static void onDriveSyncError(DriveSyncErrorEvent event); | 814 static void onDriveSyncError(DriveSyncErrorEvent event); |
812 }; | 815 }; |
813 }; | 816 }; |
OLD | NEW |