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

Unified Diff: chrome/browser/ui/webui/chromeos/login/gaia_screen_handler.h

Issue 1412813003: This CL replaces user_manager::UserID with AccountId. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@468875--Chrome-OS-handles-deletion-of-Gmail-account-poorly--Create-AccountID-structure-part2--user_names
Patch Set: Fix Win GN build. Created 5 years, 1 month 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/chromeos/login/gaia_screen_handler.h
diff --git a/chrome/browser/ui/webui/chromeos/login/gaia_screen_handler.h b/chrome/browser/ui/webui/chromeos/login/gaia_screen_handler.h
index 250d74c1756c3eea08918bef0c5123a3e9c450ca..d37fa1ae50b8d1db6c88921164523219b1a3e7ac 100644
--- a/chrome/browser/ui/webui/chromeos/login/gaia_screen_handler.h
+++ b/chrome/browser/ui/webui/chromeos/login/gaia_screen_handler.h
@@ -17,6 +17,8 @@
#include "chromeos/network/portal_detector/network_portal_detector.h"
#include "net/base/net_errors.h"
+class AccountId;
+
namespace policy {
class ConsumerManagementService;
}
@@ -215,8 +217,8 @@ class GaiaScreenHandler : public BaseScreenHandler,
// Returns user canonical e-mail. Finds already used account alias, if
// user has already signed in.
- std::string GetCanonicalEmail(const std::string& authenticated_email,
- const std::string& gaia_id) const;
+ AccountId GetAccountId(const std::string& authenticated_email,
+ const std::string& gaia_id) const;
// Returns current visible screen.
// TODO(jdufault): This definition exists in multiple locations. Refactor it

Powered by Google App Engine
This is Rietveld 408576698