| Index: chrome/browser/autofill/personal_data_manager_factory.cc
|
| diff --git a/chrome/browser/autofill/personal_data_manager_factory.cc b/chrome/browser/autofill/personal_data_manager_factory.cc
|
| index fd73fed153346672208ad4d83e071f30d8c87128..6160276884743c6d935f1f34c911ccdf55e7163e 100644
|
| --- a/chrome/browser/autofill/personal_data_manager_factory.cc
|
| +++ b/chrome/browser/autofill/personal_data_manager_factory.cc
|
| @@ -76,9 +76,9 @@ PersonalDataManagerFactory::~PersonalDataManagerFactory() {
|
| }
|
|
|
| ProfileKeyedService* PersonalDataManagerFactory::BuildServiceInstanceFor(
|
| - Profile* profile) const {
|
| + content::BrowserContext* profile) const {
|
| PersonalDataManagerService* service =
|
| - new PersonalDataManagerServiceImpl(profile);
|
| + new PersonalDataManagerServiceImpl(static_cast<Profile*>(profile));
|
| return service;
|
| }
|
|
|
|
|