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

Unified Diff: chrome/browser/ui/cocoa/notifications/balloon_controller_unittest.mm

Issue 14307023: chrome: Use base::MessageLoop. (Part 2) (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: rebase 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/ui/cocoa/notifications/balloon_controller_unittest.mm
diff --git a/chrome/browser/ui/cocoa/notifications/balloon_controller_unittest.mm b/chrome/browser/ui/cocoa/notifications/balloon_controller_unittest.mm
index f016e9db1739bae0dd6fe64b2b578265428c6597..d290879358f5c7ca6583b5a5232ef31960fcf45b 100644
--- a/chrome/browser/ui/cocoa/notifications/balloon_controller_unittest.mm
+++ b/chrome/browser/ui/cocoa/notifications/balloon_controller_unittest.mm
@@ -60,10 +60,10 @@ class MockBalloonCollection : public BalloonCollection {
class BalloonControllerTest : public ChromeRenderViewHostTestHarness {
public:
BalloonControllerTest() :
- ui_thread_(BrowserThread::UI, MessageLoop::current()),
+ ui_thread_(BrowserThread::UI, base::MessageLoop::current()),
file_user_blocking_thread_(
- BrowserThread::FILE_USER_BLOCKING, MessageLoop::current()),
- io_thread_(BrowserThread::IO, MessageLoop::current()) {
+ BrowserThread::FILE_USER_BLOCKING, base::MessageLoop::current()),
+ io_thread_(BrowserThread::IO, base::MessageLoop::current()) {
}
virtual void SetUp() {
@@ -80,7 +80,7 @@ class BalloonControllerTest : public ChromeRenderViewHostTestHarness {
virtual void TearDown() {
collection_.reset();
browser_.reset();
- MessageLoop::current()->RunUntilIdle();
+ base::MessageLoop::current()->RunUntilIdle();
ChromeRenderViewHostTestHarness::TearDown();
}
« no previous file with comments | « chrome/browser/ui/cocoa/menu_controller_unittest.mm ('k') | chrome/browser/ui/cocoa/one_click_signin_dialog_controller.mm » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698