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

Unified Diff: chrome/common/extensions/api/file_manager_private_internal.idl

Issue 1239043002: Add support for actions for multiple file selection. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Fixed externs. Created 5 years, 3 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 side-by-side diff with in-line comments
Download patch
Index: chrome/common/extensions/api/file_manager_private_internal.idl
diff --git a/chrome/common/extensions/api/file_manager_private_internal.idl b/chrome/common/extensions/api/file_manager_private_internal.idl
index 2ed52d425393a67c03e1f2c900695348ebea6752..39739f2f37a4e14475cd2789aba622ae2613d2ec 100644
--- a/chrome/common/extensions/api/file_manager_private_internal.idl
+++ b/chrome/common/extensions/api/file_manager_private_internal.idl
@@ -20,7 +20,7 @@ namespace fileManagerPrivateInternal {
fileManagerPrivate.EntryProperties[] entryProperties);
callback AddFileWatchCallback = void(optional boolean success);
callback RemoveFileWatchCallback = void(optional boolean success);
- callback GetEntryActionsCallback = void(fileSystemProvider.Action[] actions);
+ callback GetCustomActionsCallback = void(fileSystemProvider.Action[] actions);
callback ComputeChecksumCallback = void(DOMString checksum);
callback GetMimeTypeCallback = void(DOMString result);
callback ExecuteTaskCallback = void(fileManagerPrivate.TaskResult result);
@@ -44,11 +44,11 @@ namespace fileManagerPrivateInternal {
static void removeFileWatch(
DOMString url,
RemoveFileWatchCallback callback);
- static void getEntryActions(DOMString url,
- GetEntryActionsCallback callback);
- static void executeEntryAction(DOMString url,
- DOMString actionId,
- SimpleCallback callback);
+ static void getCustomActions(DOMString[] urls,
+ GetCustomActionsCallback callback);
+ static void executeCustomAction(DOMString[] urls,
+ DOMString actionId,
+ SimpleCallback callback);
static void computeChecksum(DOMString url,
ComputeChecksumCallback callback);
static void getMimeType(DOMString url,

Powered by Google App Engine
This is Rietveld 408576698