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

Unified Diff: google_apis/gaia/gaia_auth_util.cc

Issue 11185002: No need to support dasher domains. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 8 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 | « no previous file | google_apis/gaia/gaia_auth_util_unittest.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: google_apis/gaia/gaia_auth_util.cc
diff --git a/google_apis/gaia/gaia_auth_util.cc b/google_apis/gaia/gaia_auth_util.cc
index 17fcae69bc469b1192ab04ad94d936593b17447c..d2294b89f2eaee4a4f5165fefb0fde4458c90104 100644
--- a/google_apis/gaia/gaia_auth_util.cc
+++ b/google_apis/gaia/gaia_auth_util.cc
@@ -64,9 +64,7 @@ bool IsGaiaSignonRealm(const GURL& url) {
if (!url.SchemeIsSecure())
return false;
- // Also check "https://www.google.com" to support old style dasher logins.
- return url == GURL(GaiaUrls::GetInstance()->gaia_origin_url()) ||
- url == GURL("https://www.google.com/");
+ return url == GURL(GaiaUrls::GetInstance()->gaia_origin_url());
}
} // namespace gaia
« no previous file with comments | « no previous file | google_apis/gaia/gaia_auth_util_unittest.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698