| Index: chrome/browser/chromeos/extensions/file_browser_event_router.cc
|
| diff --git a/chrome/browser/chromeos/extensions/file_browser_event_router.cc b/chrome/browser/chromeos/extensions/file_browser_event_router.cc
|
| index 47d690b24a7bbd16d372616dfbf73b984f0dc5c3..d16dd15098f8e5099f33b31e4056b72bf7b930d8 100644
|
| --- a/chrome/browser/chromeos/extensions/file_browser_event_router.cc
|
| +++ b/chrome/browser/chromeos/extensions/file_browser_event_router.cc
|
| @@ -559,7 +559,8 @@ void FileBrowserEventRouter::OnExternalStorageDisabledChanged() {
|
| LOG(INFO) << "Unmounting " << it->second.mount_path
|
| << " because of policy.";
|
| manager->UnmountPath(it->second.mount_path,
|
| - chromeos::UNMOUNT_OPTIONS_NONE);
|
| + chromeos::UNMOUNT_OPTIONS_NONE,
|
| + DiskMountManager::UnmountPathCallback());
|
| }
|
| }
|
| }
|
| @@ -797,7 +798,9 @@ void FileBrowserEventRouter::OnDiskRemoved(
|
| disk->system_path_prefix());
|
| }
|
| DiskMountManager::GetInstance()->UnmountPath(
|
| - disk->mount_path(), chromeos::UNMOUNT_OPTIONS_LAZY);
|
| + disk->mount_path(),
|
| + chromeos::UNMOUNT_OPTIONS_LAZY,
|
| + DiskMountManager::UnmountPathCallback());
|
| }
|
| }
|
|
|
|
|