| Index: chrome/browser/background/background_contents_service.cc
|
| diff --git a/chrome/browser/background/background_contents_service.cc b/chrome/browser/background/background_contents_service.cc
|
| index 9b693d421b213f0cb1db8dfcf4996285a556cf9f..8bf6bca1d2733f214b6024d485fe7cd8a0f8eb46 100644
|
| --- a/chrome/browser/background/background_contents_service.cc
|
| +++ b/chrome/browser/background/background_contents_service.cc
|
| @@ -60,9 +60,9 @@ void CloseBalloon(const std::string id) {
|
| }
|
|
|
| void ScheduleCloseBalloon(const std::string& extension_id) {
|
| - if (!MessageLoop::current()) // For unit_tests
|
| + if (!base::MessageLoop::current()) // For unit_tests
|
| return;
|
| - MessageLoop::current()->PostTask(
|
| + base::MessageLoop::current()->PostTask(
|
| FROM_HERE, base::Bind(&CloseBalloon, kNotificationPrefix + extension_id));
|
| }
|
|
|
| @@ -374,7 +374,7 @@ void BackgroundContentsService::Observe(
|
| // notifications for this extension to be cancelled by
|
| // DesktopNotificationService. For this reason, instead of showing the
|
| // balloon right now, we schedule it to show a little later.
|
| - MessageLoop::current()->PostTask(
|
| + base::MessageLoop::current()->PostTask(
|
| FROM_HERE, base::Bind(&ShowBalloon, extension, profile));
|
| break;
|
| }
|
|
|