| Index: chrome/browser/sync/profile_sync_service_autofill_unittest.cc
|
| diff --git a/chrome/browser/sync/profile_sync_service_autofill_unittest.cc b/chrome/browser/sync/profile_sync_service_autofill_unittest.cc
|
| index 232635fcec906caf28530705d355020a0cc85c93..61a069baea60def69c892b1bfcd0464527d43d05 100644
|
| --- a/chrome/browser/sync/profile_sync_service_autofill_unittest.cc
|
| +++ b/chrome/browser/sync/profile_sync_service_autofill_unittest.cc
|
| @@ -294,7 +294,8 @@ class WebDataServiceFake : public AutofillWebDataService {
|
| DISALLOW_COPY_AND_ASSIGN(WebDataServiceFake);
|
| };
|
|
|
| -ProfileKeyedService* BuildMockWebDataServiceWrapper(Profile* profile) {
|
| +ProfileKeyedService* BuildMockWebDataServiceWrapper(
|
| + content::BrowserContext* profile) {
|
| return new MockWebDataServiceWrapper(
|
| new TokenWebDataServiceFake(),
|
| new WebDataServiceFake());
|
| @@ -406,7 +407,7 @@ class MockPersonalDataManager : public PersonalDataManager {
|
| class MockPersonalDataManagerService
|
| : public autofill::PersonalDataManagerService {
|
| public:
|
| - static ProfileKeyedService* Build(Profile* profile) {
|
| + static ProfileKeyedService* Build(content::BrowserContext* profile) {
|
| return new MockPersonalDataManagerService();
|
| }
|
|
|
|
|