Index: chrome/browser/ui/webui/sync_setup_handler_unittest.cc |
diff --git a/chrome/browser/ui/webui/sync_setup_handler_unittest.cc b/chrome/browser/ui/webui/sync_setup_handler_unittest.cc |
index 4b753f74cf64c74d0565ccfddb74191ac8edb0a3..a8e4687b03be964812ec6f0077099ec49f8bc11d 100644 |
--- a/chrome/browser/ui/webui/sync_setup_handler_unittest.cc |
+++ b/chrome/browser/ui/webui/sync_setup_handler_unittest.cc |
@@ -27,6 +27,7 @@ |
#include "chrome/test/base/testing_browser_process.h" |
#include "chrome/test/base/testing_profile.h" |
#include "components/signin/core/profile_oauth2_token_service.h" |
+#include "components/sync_driver/sync_prefs.h" |
#include "content/public/browser/web_ui.h" |
#include "content/public/test/test_browser_thread.h" |
#include "content/public/test/test_browser_thread_bundle.h" |
@@ -931,7 +932,7 @@ TEST_F(SyncSetupHandlerTest, ShowSetupManuallySyncAll) { |
EXPECT_CALL(*mock_pss_, IsUsingSecondaryPassphrase()) |
.WillRepeatedly(Return(false)); |
SetupInitializedProfileSyncService(); |
- browser_sync::SyncPrefs sync_prefs(profile_->GetPrefs()); |
+ sync_driver::SyncPrefs sync_prefs(profile_->GetPrefs()); |
sync_prefs.SetKeepEverythingSynced(false); |
SetDefaultExpectationsForConfigPage(); |
// This should display the sync setup dialog (not login). |
@@ -953,7 +954,7 @@ TEST_F(SyncSetupHandlerTest, ShowSetupSyncForAllTypesIndividually) { |
EXPECT_CALL(*mock_pss_, IsUsingSecondaryPassphrase()) |
.WillRepeatedly(Return(false)); |
SetupInitializedProfileSyncService(); |
- browser_sync::SyncPrefs sync_prefs(profile_->GetPrefs()); |
+ sync_driver::SyncPrefs sync_prefs(profile_->GetPrefs()); |
sync_prefs.SetKeepEverythingSynced(false); |
SetDefaultExpectationsForConfigPage(); |
syncer::ModelTypeSet types; |