| 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 6f5d831820e96db7dc9789acf62e1692a151b357..08ae7cee9b0a648e68b418c89926014f23b39d15 100644
|
| --- a/ui/file_manager/file_manager/foreground/js/file_manager.js
|
| +++ b/ui/file_manager/file_manager/foreground/js/file_manager.js
|
| @@ -383,12 +383,6 @@
|
| */
|
| get historyLoader() {
|
| return this.historyLoader_;
|
| - },
|
| - /**
|
| - * @return {MetadataCache}
|
| - */
|
| - get metadataCache() {
|
| - return this.metadataCache_;
|
| },
|
| /**
|
| * @return {FileManagerUI}
|
| @@ -1811,7 +1805,7 @@
|
|
|
| var entry = selection.entries[0];
|
| if (entry.isDirectory) {
|
| - this.onDirectoryAction_(/** @type {!DirectoryEntry} */(entry));
|
| + this.onDirectoryAction_(entry);
|
| } else {
|
| this.dispatchSelectionAction_();
|
| }
|
| @@ -2196,8 +2190,7 @@
|
| // directory.
|
| if (!item.hasAttribute('renaming')) {
|
| event.preventDefault();
|
| - this.onDirectoryAction_(
|
| - /** @type {DirectoryEntry} */(selection.entries[0]));
|
| + this.onDirectoryAction_(selection.entries[0]);
|
| }
|
| } else if (this.dispatchSelectionAction_()) {
|
| event.preventDefault();
|
|
|