| 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 601eca2a18cfdd8114aa4c27b57e09189dfe767c..f35f5bac1933684a48513d0aa081592f90fe82a1 100644
|
| --- a/chrome/browser/sync/profile_sync_service_android.cc
|
| +++ b/chrome/browser/sync/profile_sync_service_android.cc
|
| @@ -7,8 +7,7 @@
|
| #include <stddef.h>
|
| #include <stdint.h>
|
|
|
| -#include <string>
|
| -#include <vector>
|
| +#include <memory>
|
|
|
| #include "base/android/jni_android.h"
|
| #include "base/android/jni_array.h"
|
| @@ -97,7 +96,7 @@ ProfileSyncServiceAndroid::ProfileSyncServiceAndroid(JNIEnv* env, jobject obj)
|
| return;
|
| }
|
|
|
| - sync_prefs_.reset(new syncer::SyncPrefs(profile_->GetPrefs()));
|
| + sync_prefs_.reset(new sync_driver::SyncPrefs(profile_->GetPrefs()));
|
|
|
| sync_service_ =
|
| ProfileSyncServiceFactory::GetInstance()->GetForProfile(profile_);
|
| @@ -468,7 +467,7 @@ ScopedJavaLocalRef<jstring> ProfileSyncServiceAndroid::GetAboutInfoForTest(
|
| DCHECK_CURRENTLY_ON(BrowserThread::UI);
|
|
|
| std::unique_ptr<base::DictionaryValue> about_info =
|
| - syncer::sync_ui_util::ConstructAboutInformation(
|
| + sync_driver::sync_ui_util::ConstructAboutInformation(
|
| sync_service_, sync_service_->signin(), chrome::GetChannel());
|
| std::string about_info_json;
|
| base::JSONWriter::Write(*about_info, &about_info_json);
|
| @@ -483,7 +482,7 @@ jlong ProfileSyncServiceAndroid::GetLastSyncedTimeForTest(
|
| // conversion, since SyncPrefs::GetLastSyncedTime() converts the stored value
|
| // to to base::Time.
|
| return static_cast<jlong>(
|
| - profile_->GetPrefs()->GetInt64(syncer::prefs::kSyncLastSyncedTime));
|
| + profile_->GetPrefs()->GetInt64(sync_driver::prefs::kSyncLastSyncedTime));
|
| }
|
|
|
| void ProfileSyncServiceAndroid::OverrideNetworkResourcesForTest(
|
|
|