| 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 d8a029e2f79b10f0b03d174dac27c94e3e33fe6b..8ca11589d4584fe55833559eba4e857f6ab5a1f9 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_profile.h"
|
| #include "chrome/test/base/testing_browser_process.h"
|
| #include "chrome/test/base/scoped_testing_local_state.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"
|
| @@ -930,7 +931,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).
|
| @@ -952,7 +953,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;
|
|
|