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

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

Issue 473153002: Inline sign in extracts gaia id from HTTP header and seeds account tracker (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: rebased Created 6 years, 3 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/chromeos/login/gaia_screen_handler.cc
diff --git a/chrome/browser/ui/webui/chromeos/login/gaia_screen_handler.cc b/chrome/browser/ui/webui/chromeos/login/gaia_screen_handler.cc
index dab8ff042c36d1413eed71e78f28c50566e527ba..721cddda0ea3617bee89700d87b4d46096351fce 100644
--- a/chrome/browser/ui/webui/chromeos/login/gaia_screen_handler.cc
+++ b/chrome/browser/ui/webui/chromeos/login/gaia_screen_handler.cc
@@ -301,6 +301,7 @@ void GaiaScreenHandler::HandleFrameLoadingCompleted(int status) {
}
void GaiaScreenHandler::HandleCompleteAuthentication(
+ const std::string& gaia_id,
const std::string& email,
const std::string& password,
const std::string& auth_code) {
@@ -313,7 +314,8 @@ void GaiaScreenHandler::HandleCompleteAuthentication(
Delegate()->CompleteLogin(user_context);
}
-void GaiaScreenHandler::HandleCompleteLogin(const std::string& typed_email,
+void GaiaScreenHandler::HandleCompleteLogin(const std::string& gaia_id,
+ const std::string& typed_email,
const std::string& password,
bool using_saml) {
if (!is_enrolling_consumer_management_) {

Powered by Google App Engine
This is Rietveld 408576698