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

Unified Diff: chrome/browser/ui/webui/signin/user_manager_screen_handler.h

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/webui/signin/user_manager_screen_handler.h
diff --git a/chrome/browser/ui/webui/signin/user_manager_screen_handler.h b/chrome/browser/ui/webui/signin/user_manager_screen_handler.h
index 6cd26ef2c01d50d19f02cf0e5efe7554548a742f..7c4ad86e067a7ecdc04785d10db6701476cd632d 100644
--- a/chrome/browser/ui/webui/signin/user_manager_screen_handler.h
+++ b/chrome/browser/ui/webui/signin/user_manager_screen_handler.h
@@ -64,11 +64,11 @@ class UserManagerScreenHandler
icon_options) override;
void HideUserPodCustomIcon(const AccountId& account_id) override;
void EnableInput() override;
- void SetAuthType(
- const AccountId& account_id,
- proximity_auth::ScreenlockBridge::LockHandler::AuthType auth_type,
- const base::string16& auth_value) override;
- AuthType GetAuthType(const AccountId& account_id) const override;
+ void SetAuthType(const AccountId& account_id,
+ proximity_auth::mojom::AuthType auth_type,
+ const base::string16& auth_value) override;
+ proximity_auth::mojom::AuthType GetAuthType(
+ const AccountId& account_id) const override;
ScreenType GetScreenType() const override;
void Unlock(const AccountId& account_id) override;
void AttemptEasySignin(const AccountId& account_id,
@@ -130,8 +130,7 @@ class UserManagerScreenHandler
// URL hash, used to key post-profile actions if present.
std::string url_hash_;
- typedef std::map<std::string,
- proximity_auth::ScreenlockBridge::LockHandler::AuthType>
+ typedef std::map<std::string, proximity_auth::mojom::AuthType>
UserAuthTypeMap;
UserAuthTypeMap user_auth_type_map_;

Powered by Google App Engine
This is Rietveld 408576698