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

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

Issue 2376123003: [Sync] Move //components/sync to the syncer namespace. (Closed)
Patch Set: Rebase. Created 4 years, 3 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/sync_error_notifier_ash_unittest.cc
diff --git a/chrome/browser/sync/sync_error_notifier_ash_unittest.cc b/chrome/browser/sync/sync_error_notifier_ash_unittest.cc
index 307298e9a40862de59bdeec4c3a00b3658906e33..8ee9af388afeb2ee4d9da08ccebaf4ec9a945d99 100644
--- a/chrome/browser/sync/sync_error_notifier_ash_unittest.cc
+++ b/chrome/browser/sync/sync_error_notifier_ash_unittest.cc
@@ -112,7 +112,7 @@ class SyncErrorNotifierTest : public AshTestBase {
profile_, BuildMockLoginUIService));
login_ui_service->SetLoginUI(&login_ui_);
- error_controller_.reset(new SyncErrorController(service_.get()));
+ error_controller_.reset(new syncer::SyncErrorController(service_.get()));
error_notifier_.reset(new SyncErrorNotifier(error_controller_.get(),
profile_));
@@ -166,7 +166,7 @@ class SyncErrorNotifierTest : public AshTestBase {
std::unique_ptr<display::Screen> test_screen_;
#endif
std::unique_ptr<TestingProfileManager> profile_manager_;
- std::unique_ptr<SyncErrorController> error_controller_;
+ std::unique_ptr<syncer::SyncErrorController> error_controller_;
std::unique_ptr<SyncErrorNotifier> error_notifier_;
std::unique_ptr<browser_sync::ProfileSyncServiceMock> service_;
TestingProfile* profile_;
@@ -195,7 +195,7 @@ TEST_F(SyncErrorNotifierTest, MAYBE_PassphraseNotification) {
ASSERT_FALSE(notification_ui_manager_->FindById(
kNotificationId, NotificationUIManager::GetProfileID(profile_)));
- browser_sync::SyncBackendHost::Status status;
+ syncer::SyncBackendHost::Status status;
EXPECT_CALL(*service_, QueryDetailedSyncStatus(_))
.WillRepeatedly(Return(false));
« no previous file with comments | « chrome/browser/sync/sync_error_notifier_ash.cc ('k') | chrome/browser/sync/sync_error_notifier_factory_ash.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698