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

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

Issue 6874018: make new syncer thread the default. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Send for CR. Created 9 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_password_unittest.cc
diff --git a/chrome/browser/sync/profile_sync_service_password_unittest.cc b/chrome/browser/sync/profile_sync_service_password_unittest.cc
index 2e106c1bfc95a7f68761227c30dde3d09f95bd08..e2c558a1f6a474ea506030811482f400205ed13b 100644
--- a/chrome/browser/sync/profile_sync_service_password_unittest.cc
+++ b/chrome/browser/sync/profile_sync_service_password_unittest.cc
@@ -153,7 +153,7 @@ class ProfileSyncServicePasswordTest : public AbstractProfileSyncServiceTest {
NotificationType::SYNC_CONFIGURE_DONE,
NotificationService::AllSources());
registrar_.Add(&observer_,
- NotificationType::SYNC_PAUSED,
+ NotificationType::SYNC_CONFIGURE_UPDATES_DOWNLOADED,
NotificationService::AllSources());
}
@@ -218,7 +218,9 @@ class ProfileSyncServicePasswordTest : public AbstractProfileSyncServiceTest {
NotificationType(NotificationType::SYNC_CONFIGURE_DONE),_,_));
EXPECT_CALL(observer_,
Observe(
- NotificationType(NotificationType::SYNC_PAUSED),_,_))
+ NotificationType(
+ NotificationType::SYNC_CONFIGURE_UPDATES_DOWNLOADED),_,_))
tim (not reviewing) 2011/04/18 16:11:47 This was the kind of thing I expected to arise whe
lipalani1 2011/04/18 20:36:41 ha ha! yes and it took a while to figure out as we
+ .Times(2)
.WillOnce(InvokeWithoutArgs(QuitMessageLoop));
service_->RegisterDataTypeController(data_type_controller);

Powered by Google App Engine
This is Rietveld 408576698