| Index: chrome/browser/sync/profile_sync_service_startup_unittest.cc
|
| diff --git a/chrome/browser/sync/profile_sync_service_startup_unittest.cc b/chrome/browser/sync/profile_sync_service_startup_unittest.cc
|
| index 12601b2840121c32417a2d22313ca13e8b8bb633..31be1c1fa774110d767fe67472a2e6670816d56d 100644
|
| --- a/chrome/browser/sync/profile_sync_service_startup_unittest.cc
|
| +++ b/chrome/browser/sync/profile_sync_service_startup_unittest.cc
|
| @@ -105,7 +105,7 @@ class ProfileSyncServiceStartupTest : public testing::Test {
|
| ui_loop_.RunUntilIdle();
|
| }
|
|
|
| - static ProfileKeyedService* BuildService(content::BrowserContext* profile) {
|
| + static BrowserContextKeyedService* BuildService(content::BrowserContext* profile) {
|
| return new TestProfileSyncService(
|
| new ProfileSyncComponentsFactoryMock(),
|
| static_cast<Profile*>(profile),
|
| @@ -152,7 +152,7 @@ class ProfileSyncServiceStartupCrosTest : public ProfileSyncServiceStartupTest {
|
| sync_->set_synchronous_sync_configuration();
|
| }
|
|
|
| - static ProfileKeyedService* BuildCrosService(
|
| + static BrowserContextKeyedService* BuildCrosService(
|
| content::BrowserContext* context) {
|
| Profile* profile = static_cast<Profile*>(context);
|
| SigninManagerBase* signin =
|
| @@ -170,7 +170,7 @@ class ProfileSyncServiceStartupCrosTest : public ProfileSyncServiceStartupTest {
|
| }
|
| };
|
|
|
| -ProfileKeyedService* BuildFakeTokenService(content::BrowserContext* profile) {
|
| +BrowserContextKeyedService* BuildFakeTokenService(content::BrowserContext* profile) {
|
| return new FakeTokenService();
|
| }
|
|
|
|
|