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

Unified Diff: ui/file_manager/file_manager/common/js/mock_entry.js

Issue 792233009: Reflect scanning status in command UI. Only allow import once scanning is complete. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Fix FM.jstests.cc && Finalize scan results in MediaImportHandlerTest...unbreaking the test. Created 6 years 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/common/js/mock_entry.js
diff --git a/ui/file_manager/file_manager/common/js/mock_entry.js b/ui/file_manager/file_manager/common/js/mock_entry.js
index 01b5815e26964e59cbd3776833d00e85d9a95dd5..532b9206ae797ebc86320d8a8aa2b9ef7d7c50b9 100644
--- a/ui/file_manager/file_manager/common/js/mock_entry.js
+++ b/ui/file_manager/file_manager/common/js/mock_entry.js
@@ -54,7 +54,7 @@ MockFileSystem.prototype.populate = function(paths) {
// If the path doesn't end in a slash, create a file.
if (!/\/$/.test(path))
- this.entries[path] = new MockFileEntry(this, path, {size: 0});
+ this.entries[path] = new MockFileEntry(this, path, {size: 0});
}.bind(this));
};
« no previous file with comments | « ui/file_manager/file_manager/common/js/importer_common.js ('k') | ui/file_manager/file_manager/common/js/unittest_util.js » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698