Index: chrome/browser/sync/glue/sync_backend_host_impl_unittest.cc |
diff --git a/chrome/browser/sync/glue/sync_backend_host_impl_unittest.cc b/chrome/browser/sync/glue/sync_backend_host_impl_unittest.cc |
index 483d53b9dcde65743f1de1624f372f9de638d7ae..62553d15cbb99ee09c223b586d64e167ae280b87 100644 |
--- a/chrome/browser/sync/glue/sync_backend_host_impl_unittest.cc |
+++ b/chrome/browser/sync/glue/sync_backend_host_impl_unittest.cc |
@@ -17,9 +17,9 @@ |
#include "chrome/browser/prefs/pref_service_syncable.h" |
#include "chrome/browser/sync/glue/device_info.h" |
#include "chrome/browser/sync/glue/synced_device_tracker.h" |
-#include "chrome/browser/sync/sync_prefs.h" |
#include "chrome/test/base/testing_profile.h" |
#include "components/sync_driver/sync_frontend.h" |
+#include "components/sync_driver/sync_prefs.h" |
#include "components/user_prefs/pref_registry_syncable.h" |
#include "content/public/browser/notification_service.h" |
#include "content/public/test/test_browser_thread_bundle.h" |
@@ -135,7 +135,7 @@ class SyncBackendHostTest : public testing::Test { |
virtual void SetUp() OVERRIDE { |
profile_.reset(new TestingProfile()); |
- sync_prefs_.reset(new SyncPrefs(profile_->GetPrefs())); |
+ sync_prefs_.reset(new sync_driver::SyncPrefs(profile_->GetPrefs())); |
backend_.reset(new SyncBackendHostImpl( |
profile_->GetDebugName(), |
profile_.get(), |
@@ -255,7 +255,7 @@ class SyncBackendHostTest : public testing::Test { |
StrictMock<MockSyncFrontend> mock_frontend_; |
syncer::SyncCredentials credentials_; |
scoped_ptr<TestingProfile> profile_; |
- scoped_ptr<SyncPrefs> sync_prefs_; |
+ scoped_ptr<sync_driver::SyncPrefs> sync_prefs_; |
scoped_ptr<SyncBackendHost> backend_; |
scoped_ptr<FakeSyncManagerFactory> fake_manager_factory_; |
FakeSyncManager* fake_manager_; |