| Index: chrome/browser/sync/test_profile_sync_service.cc
|
| diff --git a/chrome/browser/sync/test_profile_sync_service.cc b/chrome/browser/sync/test_profile_sync_service.cc
|
| index 3bdba1f8579ec255b9df33d2a8451094128d5b43..b1f8856d28fbf4954437952b8249261666f012c4 100644
|
| --- a/chrome/browser/sync/test_profile_sync_service.cc
|
| +++ b/chrome/browser/sync/test_profile_sync_service.cc
|
| @@ -30,11 +30,12 @@ namespace browser_sync {
|
|
|
| SyncBackendHostForProfileSyncTest::SyncBackendHostForProfileSyncTest(
|
| Profile* profile,
|
| - const base::WeakPtr<SyncPrefs>& sync_prefs,
|
| + const base::WeakPtr<sync_driver::SyncPrefs>& sync_prefs,
|
| base::Closure callback)
|
| - : browser_sync::SyncBackendHostImpl(
|
| - profile->GetDebugName(), profile, sync_prefs),
|
| - callback_(callback) {}
|
| + : browser_sync::SyncBackendHostImpl(profile->GetDebugName(),
|
| + profile,
|
| + sync_prefs),
|
| + callback_(callback) {}
|
|
|
| SyncBackendHostForProfileSyncTest::~SyncBackendHostForProfileSyncTest() {}
|
|
|
|
|