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

Unified Diff: chrome/browser/chromeos/extensions/file_manager/file_manager_notifications.cc

Issue 14113053: chrome: Use base::MessageLoop. (Part 3) (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: rebase again Created 7 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: 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),

Powered by Google App Engine
This is Rietveld 408576698