Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(393)

Unified Diff: chrome/browser/chromeos/login/user_selection_screen_proxy.cc

Issue 2937553002: Create Mojo Struct for user information used in login/lock screen. (Closed)
Patch Set: rebase Created 3 years, 6 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
Index: chrome/browser/chromeos/login/user_selection_screen_proxy.cc
diff --git a/chrome/browser/chromeos/login/user_selection_screen_proxy.cc b/chrome/browser/chromeos/login/user_selection_screen_proxy.cc
index 216cf824b60cfb06d5b8a89316e7c266698184fb..8fa8baf13ed3b9bd055828daeb6a2876a242c509 100644
--- a/chrome/browser/chromeos/login/user_selection_screen_proxy.cc
+++ b/chrome/browser/chromeos/login/user_selection_screen_proxy.cc
@@ -62,10 +62,9 @@ void UserSelectionScreenProxy::HideUserPodCustomIcon(
void UserSelectionScreenProxy::SetAuthType(
const AccountId& account_id,
- proximity_auth::ScreenlockBridge::LockHandler::AuthType auth_type,
+ proximity_auth::mojom::AuthType auth_type,
const base::string16& initial_value) {
- LockScreenClient::Get()->SetAuthType(
- account_id, static_cast<ash::mojom::AuthType>(auth_type), initial_value);
+ LockScreenClient::Get()->SetAuthType(account_id, auth_type, initial_value);
}
base::WeakPtr<chromeos::UserBoardView> UserSelectionScreenProxy::GetWeakPtr() {

Powered by Google App Engine
This is Rietveld 408576698