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

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

Issue 1222563005: Implement refreshing logic in Files app. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Rebased. Created 5 years, 5 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/foreground/js/file_manager_commands.js » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: ui/file_manager/file_manager/foreground/js/file_manager.js
diff --git a/ui/file_manager/file_manager/foreground/js/file_manager.js b/ui/file_manager/file_manager/foreground/js/file_manager.js
index acf7b8d3eeb4aa115c9732ece0e37af4829ec86b..1b91a1f057412f4d927e2a090cda39cd75b52dc8 100644
--- a/ui/file_manager/file_manager/foreground/js/file_manager.js
+++ b/ui/file_manager/file_manager/foreground/js/file_manager.js
@@ -341,6 +341,12 @@ FileManager.prototype = /** @struct */ {
return this.taskController_;
},
/**
+ * @return {SpinnerController}
+ */
+ get spinnerController() {
+ return this.spinnerController_;
+ },
+ /**
* @return {FileOperationManager}
*/
get fileOperationManager() {
@@ -976,7 +982,7 @@ FileManager.prototype = /** @struct */ {
// Create spinner controller.
this.spinnerController_ = new SpinnerController(
- this.ui_.listContainer.spinner, this.directoryModel_);
+ this.ui_.listContainer.spinner);
this.spinnerController_.show();
// Create dialog action controller.
« no previous file with comments | « no previous file | ui/file_manager/file_manager/foreground/js/file_manager_commands.js » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698