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

Unified Diff: google_apis/gaia/gaia_auth_util.cc

Issue 1101173004: Switch remaining functions from SchemeIsSecure() to SchemeIsCryptographic(). (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 5 years, 8 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: 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 c3cc764e8a988538b94fd3ac759b332aac91ad9c..d643fc33884d8d4e1dd7d53c79b43ae8baf97508 100644
--- a/google_apis/gaia/gaia_auth_util.cc
+++ b/google_apis/gaia/gaia_auth_util.cc
@@ -86,7 +86,7 @@ std::string ExtractDomainName(const std::string& email_address) {
}
bool IsGaiaSignonRealm(const GURL& url) {
- if (!url.SchemeIsSecure())
+ if (!url.SchemeIsCryptographic())
return false;
return url == GaiaUrls::GetInstance()->gaia_url();

Powered by Google App Engine
This is Rietveld 408576698