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

Unified Diff: chrome/browser/ui/ash/lock_screen_client.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/ui/ash/lock_screen_client.cc
diff --git a/chrome/browser/ui/ash/lock_screen_client.cc b/chrome/browser/ui/ash/lock_screen_client.cc
index 8e0a3df4340ed8e54abe105b328e7805260443b4..56bfb885c83b58f0b1152be10da20a649954b7e1 100644
--- a/chrome/browser/ui/ash/lock_screen_client.cc
+++ b/chrome/browser/ui/ash/lock_screen_client.cc
@@ -119,13 +119,14 @@ void LockScreenClient::HideUserPodCustomIcon(const AccountId& account_id) {
}
void LockScreenClient::SetAuthType(const AccountId& account_id,
- ash::mojom::AuthType auth_type,
+ proximity_auth::mojom::AuthType auth_type,
const base::string16& initial_value) {
lock_screen_->SetAuthType(account_id, auth_type, initial_value);
}
-void LockScreenClient::LoadUsers(std::unique_ptr<base::ListValue> users_list,
- bool show_guest) {
+void LockScreenClient::LoadUsers(
+ std::vector<ash::mojom::LoginUserInfoPtr> users_list,
+ bool show_guest) {
lock_screen_->LoadUsers(std::move(users_list), show_guest);
}
« no previous file with comments | « chrome/browser/ui/ash/lock_screen_client.h ('k') | chrome/browser/ui/webui/chromeos/login/signin_userlist_unittest.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698