| Index: chrome/browser/chromeos/login/auth/chrome_cryptohome_authenticator.cc
|
| diff --git a/chrome/browser/chromeos/login/auth/chrome_cryptohome_authenticator.cc b/chrome/browser/chromeos/login/auth/chrome_cryptohome_authenticator.cc
|
| index e2d2ed2cfd7a78ab077dfb016c5cff85cbb4b91b..9ab9c74028cf673b0860356d76468538d840d730 100644
|
| --- a/chrome/browser/chromeos/login/auth/chrome_cryptohome_authenticator.cc
|
| +++ b/chrome/browser/chromeos/login/auth/chrome_cryptohome_authenticator.cc
|
| @@ -5,9 +5,10 @@
|
| #include "chrome/browser/chromeos/login/auth/chrome_cryptohome_authenticator.h"
|
|
|
| #include "base/thread_task_runner_handle.h"
|
| -#include "chrome/browser/chromeos/ownership/owner_settings_service.h"
|
| -#include "chrome/browser/chromeos/ownership/owner_settings_service_factory.h"
|
| +#include "chrome/browser/chromeos/ownership/owner_settings_service_chromeos.h"
|
| +#include "chrome/browser/chromeos/ownership/owner_settings_service_chromeos_factory.h"
|
| #include "chrome/browser/chromeos/settings/cros_settings.h"
|
| +#include "components/ownership/owner_key_util.h"
|
| #include "components/user_manager/user_manager.h"
|
| #include "content/public/browser/browser_thread.h"
|
|
|
| @@ -43,10 +44,10 @@ void ChromeCryptohomeAuthenticator::CheckSafeModeOwnership(
|
| LoginState::LOGGED_IN_USER_NONE);
|
| }
|
|
|
| - OwnerSettingsService::IsOwnerForSafeModeAsync(
|
| + OwnerSettingsServiceChromeOS::IsOwnerForSafeModeAsync(
|
| context.GetUserID(),
|
| context.GetUserIDHash(),
|
| - OwnerSettingsServiceFactory::GetInstance()->GetOwnerKeyUtil(),
|
| + OwnerSettingsServiceChromeOSFactory::GetInstance()->GetOwnerKeyUtil(),
|
| callback);
|
| }
|
|
|
|
|