| OLD | NEW |
| 1 // Copyright 2014 The Chromium Authors. All rights reserved. | 1 // Copyright 2014 The Chromium Authors. All rights reserved. |
| 2 // Use of this source code is governed by a BSD-style license that can be | 2 // Use of this source code is governed by a BSD-style license that can be |
| 3 // found in the LICENSE file. | 3 // found in the LICENSE file. |
| 4 | 4 |
| 5 #include "chrome/browser/chromeos/login/auth/chrome_cryptohome_authenticator.h" | 5 #include "chrome/browser/chromeos/login/auth/chrome_cryptohome_authenticator.h" |
| 6 | 6 |
| 7 #include "base/thread_task_runner_handle.h" | 7 #include "base/thread_task_runner_handle.h" |
| 8 #include "chrome/browser/chromeos/ownership/owner_settings_service.h" | 8 #include "chrome/browser/chromeos/ownership/owner_settings_service_chromeos.h" |
| 9 #include "chrome/browser/chromeos/ownership/owner_settings_service_factory.h" | 9 #include "chrome/browser/chromeos/ownership/owner_settings_service_chromeos_fact
ory.h" |
| 10 #include "chrome/browser/chromeos/settings/cros_settings.h" | 10 #include "chrome/browser/chromeos/settings/cros_settings.h" |
| 11 #include "components/ownership/owner_key_util.h" |
| 11 #include "components/user_manager/user_manager.h" | 12 #include "components/user_manager/user_manager.h" |
| 12 #include "content/public/browser/browser_thread.h" | 13 #include "content/public/browser/browser_thread.h" |
| 13 | 14 |
| 14 using content::BrowserThread; | 15 using content::BrowserThread; |
| 15 | 16 |
| 16 namespace chromeos { | 17 namespace chromeos { |
| 17 | 18 |
| 18 ChromeCryptohomeAuthenticator::ChromeCryptohomeAuthenticator( | 19 ChromeCryptohomeAuthenticator::ChromeCryptohomeAuthenticator( |
| 19 AuthStatusConsumer* consumer) | 20 AuthStatusConsumer* consumer) |
| 20 : CryptohomeAuthenticator(base::ThreadTaskRunnerHandle::Get(), consumer) { | 21 : CryptohomeAuthenticator(base::ThreadTaskRunnerHandle::Get(), consumer) { |
| (...skipping 15 matching lines...) Expand all Loading... |
| 36 void ChromeCryptohomeAuthenticator::CheckSafeModeOwnership( | 37 void ChromeCryptohomeAuthenticator::CheckSafeModeOwnership( |
| 37 const UserContext& context, | 38 const UserContext& context, |
| 38 const IsOwnerCallback& callback) { | 39 const IsOwnerCallback& callback) { |
| 39 // |IsOwnerForSafeModeAsync| expects logged in state to be | 40 // |IsOwnerForSafeModeAsync| expects logged in state to be |
| 40 // LOGGED_IN_SAFE_MODE. | 41 // LOGGED_IN_SAFE_MODE. |
| 41 if (LoginState::IsInitialized()) { | 42 if (LoginState::IsInitialized()) { |
| 42 LoginState::Get()->SetLoggedInState(LoginState::LOGGED_IN_SAFE_MODE, | 43 LoginState::Get()->SetLoggedInState(LoginState::LOGGED_IN_SAFE_MODE, |
| 43 LoginState::LOGGED_IN_USER_NONE); | 44 LoginState::LOGGED_IN_USER_NONE); |
| 44 } | 45 } |
| 45 | 46 |
| 46 OwnerSettingsService::IsOwnerForSafeModeAsync( | 47 OwnerSettingsServiceChromeOS::IsOwnerForSafeModeAsync( |
| 47 context.GetUserID(), | 48 context.GetUserID(), |
| 48 context.GetUserIDHash(), | 49 context.GetUserIDHash(), |
| 49 OwnerSettingsServiceFactory::GetInstance()->GetOwnerKeyUtil(), | 50 OwnerSettingsServiceChromeOSFactory::GetInstance()->GetOwnerKeyUtil(), |
| 50 callback); | 51 callback); |
| 51 } | 52 } |
| 52 | 53 |
| 53 } // namespace chromeos | 54 } // namespace chromeos |
| OLD | NEW |