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

Unified Diff: ui/file_manager/file_manager/foreground/js/directory_contents.js

Issue 1408533002: Turn on verbose flag for compiling file_manager. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Use type cast for createElement, fix indent. Created 5 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
Index: ui/file_manager/file_manager/foreground/js/directory_contents.js
diff --git a/ui/file_manager/file_manager/foreground/js/directory_contents.js b/ui/file_manager/file_manager/foreground/js/directory_contents.js
index 4b87f4f61d4bed0a08b9b3f239a567c8fd365e18..4cbad6ddf810b66dacf6d474b09032622067b732 100644
--- a/ui/file_manager/file_manager/foreground/js/directory_contents.js
+++ b/ui/file_manager/file_manager/foreground/js/directory_contents.js
@@ -501,7 +501,7 @@ FileListModel.prototype.splice = function(index, deleteCount, var_args) {
this.onAddEntryToList_(arguments[i]);
}
- cr.ui.ArrayDataModel.prototype.splice.apply(this, arguments);
+ return cr.ui.ArrayDataModel.prototype.splice.apply(this, arguments);
};
/**

Powered by Google App Engine
This is Rietveld 408576698