Index: chrome/common/extensions/api/file_manager_private.idl |
diff --git a/chrome/common/extensions/api/file_manager_private.idl b/chrome/common/extensions/api/file_manager_private.idl |
index bf636a56e4435acbca92971d0fd0ceedc9aa5cf3..a7f7f8f50193a14e24ec7d0c3799b79f6ebe7599 100644 |
--- a/chrome/common/extensions/api/file_manager_private.idl |
+++ b/chrome/common/extensions/api/file_manager_private.idl |
@@ -634,7 +634,7 @@ callback ComputeChecksumCallback = void(DOMString checksum); |
callback GetProvidingExtensionsCallback = void(ProvidingExtension[] extensions); |
// |actions| List of actions. |
-callback GetEntryActionsCallback = void(fileSystemProvider.Action[] actions); |
+callback GetCustomActionsCallback = void(fileSystemProvider.Action[] actions); |
interface Functions { |
// Logout the current user for navigating to the re-authentication screen for |
@@ -943,18 +943,18 @@ interface Functions { |
// an error via chrome.runtime.lastError. |
static void configureVolume(DOMString volumeId, SimpleCallback callback); |
- // Requests list of actions for the specified file. If not possible, then an |
- // error via chrome.runtime.lastError is returned. |
+ // Requests list of custom actions for the specified entries. If not possible, |
+ // then an error via chrome.runtime.lastError is returned. |
[nocompile] |
- static void getEntryActions([instanceof=Entry] object entry, |
- GetEntryActionsCallback callback); |
+ static void getCustomActions([instanceof=Entry] object[] entries, |
+ GetCustomActionsCallback callback); |
- // Executes the entry action. If not possible, then an error via |
- // chrome.runtime.lastError is returned. |
+ // Executes a custom action for a set of entries. If not possible, then an |
+ // error via chrome.runtime.lastError is returned. |
[nocompile] |
- static void executeEntryAction([instanceof=Entry] object entry, |
- DOMString actionId, |
- SimpleCallback callback); |
+ static void executeCustomAction([instanceof=Entry] object[] entries, |
+ DOMString actionId, |
+ SimpleCallback callback); |
}; |
interface Events { |