| Index: chrome/browser/chromeos/extensions/file_manager/file_manager_notifications.cc
|
| diff --git a/chrome/browser/chromeos/extensions/file_manager/file_manager_notifications.cc b/chrome/browser/chromeos/extensions/file_manager/file_manager_notifications.cc
|
| index 8331d82905740bf8114ef72733e26d007c33afe5..166b8d1a4b6ddc2857ed2c75c86aa061d152ff80 100644
|
| --- a/chrome/browser/chromeos/extensions/file_manager/file_manager_notifications.cc
|
| +++ b/chrome/browser/chromeos/extensions/file_manager/file_manager_notifications.cc
|
| @@ -319,7 +319,7 @@ void FileManagerNotifications::ShowNotificationDelayed(
|
| base::TimeDelta delay) {
|
| std::string notification_id = GetNotificationId(type, path);
|
| hidden_notifications_.erase(notification_id);
|
| - MessageLoop::current()->PostDelayedTask(
|
| + base::MessageLoop::current()->PostDelayedTask(
|
| FROM_HERE,
|
| base::Bind(&FileManagerNotifications::ShowNotificationById, AsWeakPtr(),
|
| type, notification_id, GetMessage(type)),
|
| @@ -334,7 +334,7 @@ void FileManagerNotifications::HideNotification(NotificationType type,
|
|
|
| void FileManagerNotifications::HideNotificationDelayed(
|
| NotificationType type, const std::string& path, base::TimeDelta delay) {
|
| - MessageLoop::current()->PostDelayedTask(
|
| + base::MessageLoop::current()->PostDelayedTask(
|
| FROM_HERE,
|
| base::Bind(&FileManagerNotifications::HideNotification, AsWeakPtr(),
|
| type, path),
|
|
|