| Index: chrome/browser/chromeos/ownership/owner_settings_service_chromeos_factory.cc
|
| diff --git a/chrome/browser/chromeos/ownership/owner_settings_service_chromeos_factory.cc b/chrome/browser/chromeos/ownership/owner_settings_service_chromeos_factory.cc
|
| index afe0480125f43757531956af0d18206dd6c0ac29..67e4e74914e7afe729f1f62edac5fc083031d570 100644
|
| --- a/chrome/browser/chromeos/ownership/owner_settings_service_chromeos_factory.cc
|
| +++ b/chrome/browser/chromeos/ownership/owner_settings_service_chromeos_factory.cc
|
| @@ -41,8 +41,15 @@ OwnerSettingsServiceChromeOSFactory::~OwnerSettingsServiceChromeOSFactory() {
|
| // static
|
| OwnerSettingsServiceChromeOS*
|
| OwnerSettingsServiceChromeOSFactory::GetForProfile(Profile* profile) {
|
| + return GetForBrowserContext(profile);
|
| +}
|
| +
|
| +// static
|
| +OwnerSettingsServiceChromeOS*
|
| +OwnerSettingsServiceChromeOSFactory::GetForBrowserContext(
|
| + content::BrowserContext* context) {
|
| return static_cast<OwnerSettingsServiceChromeOS*>(
|
| - GetInstance()->GetServiceForBrowserContext(profile, true));
|
| + GetInstance()->GetServiceForBrowserContext(context, true));
|
| }
|
|
|
| // static
|
|
|