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

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

Issue 686393002: Add isGenericFileHandler property to FileTask. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Added unitteset for IsGenericFileHandler. Created 6 years, 1 month 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/file_manager/file_tasks_unittest.cc ('k') | no next file » | 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.
(...skipping 149 matching lines...) Expand 10 before | Expand all | Expand 10 after
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
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 };
OLDNEW
« no previous file with comments | « chrome/browser/chromeos/file_manager/file_tasks_unittest.cc ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698