| Index: chrome/browser/profiles/startup_task_runner_service_factory.cc
|
| diff --git a/chrome/browser/profiles/startup_task_runner_service_factory.cc b/chrome/browser/profiles/startup_task_runner_service_factory.cc
|
| index eaff6a865c35365628ee30e0f8e3a44c8035a2c0..00ef07689cf03a0a969b6ac19f123d53c14fc36d 100644
|
| --- a/chrome/browser/profiles/startup_task_runner_service_factory.cc
|
| +++ b/chrome/browser/profiles/startup_task_runner_service_factory.cc
|
| @@ -4,6 +4,7 @@
|
|
|
| #include "chrome/browser/profiles/startup_task_runner_service_factory.h"
|
|
|
| +#include "chrome/browser/profiles/profile.h"
|
| #include "chrome/browser/profiles/profile_dependency_manager.h"
|
| #include "chrome/browser/profiles/startup_task_runner_service.h"
|
|
|
| @@ -28,6 +29,6 @@ StartupTaskRunnerServiceFactory*
|
| }
|
|
|
| ProfileKeyedService* StartupTaskRunnerServiceFactory::BuildServiceInstanceFor(
|
| - Profile* profile) const {
|
| - return new StartupTaskRunnerService(profile);
|
| + content::BrowserContext* profile) const {
|
| + return new StartupTaskRunnerService(static_cast<Profile*>(profile));
|
| }
|
|
|