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

Unified Diff: chromeos/login/auth/user_context.cc

Issue 671183002: Revert of 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: Created 6 years, 2 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
« no previous file with comments | « chromeos/login/auth/user_context.h ('k') | components/signin/core/browser/account_tracker_service.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: chromeos/login/auth/user_context.cc
diff --git a/chromeos/login/auth/user_context.cc b/chromeos/login/auth/user_context.cc
index edeb24ea7924345a44656b4f294543c5094580be..31113f1311b51007ed890e72b35be4721a3a3be7 100644
--- a/chromeos/login/auth/user_context.cc
+++ b/chromeos/login/auth/user_context.cc
@@ -15,7 +15,6 @@
UserContext::UserContext(const UserContext& other)
: user_id_(other.user_id_),
- gaia_id_(other.gaia_id_),
key_(other.key_),
auth_code_(other.auth_code_),
user_id_hash_(other.user_id_hash_),
@@ -49,7 +48,6 @@
bool UserContext::operator==(const UserContext& context) const {
return context.user_id_ == user_id_ &&
- context.gaia_id_ == gaia_id_ &&
context.key_ == key_ &&
context.auth_code_ == auth_code_ &&
context.user_id_hash_ == user_id_hash_ &&
@@ -66,10 +64,6 @@
const std::string& UserContext::GetUserID() const {
return user_id_;
-}
-
-const std::string& UserContext::GetGaiaID() const {
- return gaia_id_;
}
const Key* UserContext::GetKey() const {
@@ -117,10 +111,6 @@
user_id_ = login::CanonicalizeUserID(user_id);
}
-void UserContext::SetGaiaID(const std::string& gaia_id) {
- gaia_id_ = gaia_id;
-}
-
void UserContext::SetKey(const Key& key) {
key_ = key;
}
« no previous file with comments | « chromeos/login/auth/user_context.h ('k') | components/signin/core/browser/account_tracker_service.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698