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

Unified Diff: ui/file_manager/file_manager/background/js/file_operation_util.js

Issue 1022573003: Fix compilation error (missing !) (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 5 years, 9 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 | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: ui/file_manager/file_manager/background/js/file_operation_util.js
diff --git a/ui/file_manager/file_manager/background/js/file_operation_util.js b/ui/file_manager/file_manager/background/js/file_operation_util.js
index ca0f996354b7e69d7892ed5c28941f0d675f9597..e82219dcc4ab5c0d39b1563692082d5ab09ec015 100644
--- a/ui/file_manager/file_manager/background/js/file_operation_util.js
+++ b/ui/file_manager/file_manager/background/js/file_operation_util.js
@@ -330,7 +330,7 @@ fileOperationUtil.listEntries = function(directory, callback) {
var readEntries = function() {
reader.readEntries (
- /** @param {!Array<Entry>} entries */
+ /** @param {!Array<!Entry>} entries */
function(entries) {
if (entries.length === 0) {
resolve(undefined);
« no previous file with comments | « no previous file | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698