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

Unified Diff: chrome/browser/sync/profile_sync_service_startup_unittest.cc

Issue 14113053: chrome: Use base::MessageLoop. (Part 3) (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 7 years, 8 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/sync/profile_sync_service_startup_unittest.cc
diff --git a/chrome/browser/sync/profile_sync_service_startup_unittest.cc b/chrome/browser/sync/profile_sync_service_startup_unittest.cc
index f6b335374d613e6a4ea56eb1e064a0984a525720..c75936c759271f39d4d8346a783eeeec7addb51b 100644
--- a/chrome/browser/sync/profile_sync_service_startup_unittest.cc
+++ b/chrome/browser/sync/profile_sync_service_startup_unittest.cc
@@ -141,7 +141,7 @@ class ProfileSyncServiceStartupTest : public testing::Test {
return data_type_manager;
}
- MessageLoop ui_loop_;
+ base::MessageLoop ui_loop_;
content::TestBrowserThread ui_thread_;
content::TestBrowserThread db_thread_;
content::TestBrowserThread file_thread_;
@@ -288,7 +288,7 @@ TEST_F(ProfileSyncServiceStartupTest, StartInvalidCredentials) {
token_service->IssueAuthTokenForTest(
GaiaConstants::kSyncService, "sync_token");
sync_->SetSetupInProgress(false);
- MessageLoop::current()->Run();
+ base::MessageLoop::current()->Run();
// Verify we successfully finish startup and configuration.
EXPECT_TRUE(sync_->ShouldPushChanges());

Powered by Google App Engine
This is Rietveld 408576698