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

Unified Diff: sync/syncable/syncable_unittest.cc

Issue 14113050: sync: Use base::MessageLoop. (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
« no previous file with comments | « sync/sessions/sync_session_unittest.cc ('k') | sync/test/engine/fake_sync_scheduler.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: sync/syncable/syncable_unittest.cc
diff --git a/sync/syncable/syncable_unittest.cc b/sync/syncable/syncable_unittest.cc
index e5562aa9f9d51c3fcbac56ee817d9ee2bb6abef3..ec8512bdf6d9959a2cc357f04beb1f0b7a0f20a9 100644
--- a/sync/syncable/syncable_unittest.cc
+++ b/sync/syncable/syncable_unittest.cc
@@ -97,7 +97,7 @@ class SyncableGeneralTest : public testing::Test {
virtual void TearDown() {
}
protected:
- MessageLoop message_loop_;
+ base::MessageLoop message_loop_;
base::ScopedTempDir temp_dir_;
NullDirectoryChangeDelegate delegate_;
FakeEncryptor encryptor_;
@@ -446,7 +446,7 @@ TEST_F(SyncableGeneralTest, BookmarkTagTest) {
// the unit tests fast.
class SyncableDirectoryTest : public testing::Test {
protected:
- MessageLoop message_loop_;
+ base::MessageLoop message_loop_;
static const char kName[];
virtual void SetUp() {
@@ -2103,7 +2103,7 @@ class SyncableDirectoryManagement : public testing::Test {
virtual void TearDown() {
}
protected:
- MessageLoop message_loop_;
+ base::MessageLoop message_loop_;
base::ScopedTempDir temp_dir_;
FakeEncryptor encryptor_;
TestUnrecoverableErrorHandler handler_;
@@ -2172,7 +2172,7 @@ class StressTransactionsDelegate : public base::PlatformThread::Delegate {
};
TEST(SyncableDirectory, StressTransactions) {
- MessageLoop message_loop;
+ base::MessageLoop message_loop;
base::ScopedTempDir temp_dir;
ASSERT_TRUE(temp_dir.CreateUniqueTempDir());
FakeEncryptor encryptor;
« no previous file with comments | « sync/sessions/sync_session_unittest.cc ('k') | sync/test/engine/fake_sync_scheduler.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698