| Index: chrome/browser/sync/profile_sync_service_android.cc
|
| diff --git a/chrome/browser/sync/profile_sync_service_android.cc b/chrome/browser/sync/profile_sync_service_android.cc
|
| index 9717168b79817efe71c48a37d575cf895f5a79bb..52a29b0421395fd5eb28db0134fd0e866e7ae7ee 100644
|
| --- a/chrome/browser/sync/profile_sync_service_android.cc
|
| +++ b/chrome/browser/sync/profile_sync_service_android.cc
|
| @@ -22,9 +22,9 @@
|
| #include "chrome/browser/sync/about_sync_util.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/sync/sync_ui_util.h"
|
| #include "chrome/common/pref_names.h"
|
| +#include "components/sync_driver/sync_prefs.h"
|
| #include "content/public/browser/browser_thread.h"
|
| #include "content/public/browser/notification_service.h"
|
| #include "content/public/browser/notification_source.h"
|
| @@ -70,7 +70,7 @@ ProfileSyncServiceAndroid::ProfileSyncServiceAndroid(JNIEnv* env, jobject obj)
|
| return;
|
| }
|
|
|
| - sync_prefs_.reset(new browser_sync::SyncPrefs(profile_->GetPrefs()));
|
| + sync_prefs_.reset(new sync_driver::SyncPrefs(profile_->GetPrefs()));
|
|
|
| sync_service_ =
|
| ProfileSyncServiceFactory::GetInstance()->GetForProfile(profile_);
|
|
|