Index: chrome/browser/notifications/balloon_collection_impl.cc |
diff --git a/chrome/browser/notifications/balloon_collection_impl.cc b/chrome/browser/notifications/balloon_collection_impl.cc |
index e6943a1924e100ced534c1af273c40757d39bd5a..435cc1715c8f33fbc70646eb942a4eabce718f37 100644 |
--- a/chrome/browser/notifications/balloon_collection_impl.cc |
+++ b/chrome/browser/notifications/balloon_collection_impl.cc |
@@ -235,14 +235,14 @@ gfx::Rect BalloonCollectionImpl::GetBalloonsBoundingBox() const { |
#if USE_OFFSETS |
void BalloonCollectionImpl::AddMessageLoopObserver() { |
if (!added_as_message_loop_observer_) { |
- MessageLoopForUI::current()->AddObserver(this); |
+ base::MessageLoopForUI::current()->AddObserver(this); |
added_as_message_loop_observer_ = true; |
} |
} |
void BalloonCollectionImpl::RemoveMessageLoopObserver() { |
if (added_as_message_loop_observer_) { |
- MessageLoopForUI::current()->RemoveObserver(this); |
+ base::MessageLoopForUI::current()->RemoveObserver(this); |
added_as_message_loop_observer_ = false; |
} |
} |
@@ -267,7 +267,7 @@ void BalloonCollectionImpl::HandleMouseMoveEvent() { |
// Mouse has left the region. Schedule a reposition after |
// a short delay. |
if (!reposition_factory_.HasWeakPtrs()) { |
- MessageLoop::current()->PostDelayedTask( |
+ base::MessageLoop::current()->PostDelayedTask( |
FROM_HERE, |
base::Bind(&BalloonCollectionImpl::CancelOffsets, |
reposition_factory_.GetWeakPtr()), |