| Index: chrome/browser/ui/sync/one_click_signin_sync_starter.cc
|
| diff --git a/chrome/browser/ui/sync/one_click_signin_sync_starter.cc b/chrome/browser/ui/sync/one_click_signin_sync_starter.cc
|
| index 7cded08d472b0a71995ae8101849e8e3e150667e..cf20f2bffd118e09f6a0deb4972fee601db2ee6e 100644
|
| --- a/chrome/browser/ui/sync/one_click_signin_sync_starter.cc
|
| +++ b/chrome/browser/ui/sync/one_click_signin_sync_starter.cc
|
| @@ -22,7 +22,6 @@
|
| #include "chrome/browser/signin/signin_manager_factory.h"
|
| #include "chrome/browser/sync/profile_sync_service.h"
|
| #include "chrome/browser/sync/profile_sync_service_factory.h"
|
| -#include "chrome/browser/sync/sync_prefs.h"
|
| #include "chrome/browser/ui/browser.h"
|
| #include "chrome/browser/ui/browser_dialogs.h"
|
| #include "chrome/browser/ui/browser_finder.h"
|
| @@ -37,6 +36,7 @@
|
| #include "chrome/browser/ui/webui/signin/profile_signin_confirmation_dialog.h"
|
| #include "chrome/common/profile_management_switches.h"
|
| #include "chrome/common/url_constants.h"
|
| +#include "components/sync_driver/sync_prefs.h"
|
| #include "grit/chromium_strings.h"
|
| #include "grit/generated_resources.h"
|
| #include "ui/base/l10n/l10n_util.h"
|
| @@ -113,7 +113,7 @@ void OneClickSigninSyncStarter::Initialize(Profile* profile, Browser* browser) {
|
|
|
| // Make sure the syncing is not suppressed, otherwise the SigninManager
|
| // will not be able to complete sucessfully.
|
| - browser_sync::SyncPrefs sync_prefs(profile_->GetPrefs());
|
| + sync_driver::SyncPrefs sync_prefs(profile_->GetPrefs());
|
| sync_prefs.SetStartSuppressed(false);
|
| }
|
|
|
|
|