| Index: chrome/browser/resources/file_manager/foreground/js/drive_banners.js
|
| diff --git a/chrome/browser/resources/file_manager/foreground/js/drive_banners.js b/chrome/browser/resources/file_manager/foreground/js/drive_banners.js
|
| index 087a5ff10fcbc6c7d751f3319bac9a921445dd4a..86edb130d5208e09d9a288991ab95f5f313bf89b 100644
|
| --- a/chrome/browser/resources/file_manager/foreground/js/drive_banners.js
|
| +++ b/chrome/browser/resources/file_manager/foreground/js/drive_banners.js
|
| @@ -517,11 +517,11 @@ FileListBannerController.prototype.maybeShowLowSpaceWarning_ = function(
|
| }
|
|
|
| // If not mounted correctly, then do not continue.
|
| - if (!volume.root)
|
| + if (!volume.fileSystem)
|
| return;
|
|
|
| chrome.fileBrowserPrivate.getSizeStats(
|
| - volume.root.toURL(),
|
| + volume.fileSystem.root.toURL(),
|
| function(sizeStats) {
|
| var currentVolume = this.volumeManager_.getVolumeInfo(
|
| this.directoryModel_.getCurrentDirEntry());
|
|
|