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

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

Issue 2890123003: Compile file_manager and eliminate gyp v1 from Files App! (Closed)
Patch Set: Fix test failures. Format. Created 3 years, 7 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/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 c67227b7c6f7909ff3fb59cd8034cbe0d5dfd979..ccc06a43db8ef12949519632b155399dcd699a32 100644
--- a/ui/file_manager/file_manager/foreground/js/file_manager.js
+++ b/ui/file_manager/file_manager/foreground/js/file_manager.js
@@ -296,7 +296,7 @@ function FileManager() {
this.backgroundPage_ = null;
/**
- * @type {FileBrowserBackgroundImpl}
+ * @type {FileBrowserBackgroundFull}
* @private
*/
this.fileBrowserBackground_ = null;
@@ -800,7 +800,7 @@ FileManager.prototype = /** @struct */ {
this.backgroundPage_ =
/** @type {!BackgroundWindow} */ (opt_backgroundPage);
this.fileBrowserBackground_ =
- /** @type {!FileBrowserBackgroundImpl} */ (
+ /** @type {!FileBrowserBackgroundFull} */ (
this.backgroundPage_.background);
this.fileBrowserBackground_.ready(function() {
loadTimeData.data = this.fileBrowserBackground_.stringData;

Powered by Google App Engine
This is Rietveld 408576698