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

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

Issue 657253004: Fix suspicious code detected by closure compiler. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Reflect review comments. Created 6 years, 2 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
« no previous file with comments | « no previous file | ui/file_manager/file_manager/background/js/background.js » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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 6223cffc97ec881b51319c5ddb75331dd206fccd..cf14c43b7b6aaa2c73440c078a11116d95058c31 100644
--- a/chrome/common/extensions/api/file_manager_private.idl
+++ b/chrome/common/extensions/api/file_manager_private.idl
@@ -665,10 +665,11 @@ interface Functions {
// Cancels ongoing file transfers for selected files.
// |fileUrls| Array of files for which ongoing transfer should be canceled.
- // If this is absent, all jobs are canceled.
- // |callback|
- static void cancelFileTransfers(optional DOMString[] fileUrls,
- CancelFileTransfersCallback callback);
+ // If this is absent, all jobs are canceled.
+ // |callback| Completion callback of the cancel.
+ static void cancelFileTransfers(
+ optional DOMString[] fileUrls,
+ optional CancelFileTransfersCallback callback);
// Starts to copy an entry. If the source is a directory, the copy is done
// recursively.
« no previous file with comments | « no previous file | ui/file_manager/file_manager/background/js/background.js » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698