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

Unified Diff: google_apis/gaia/gaia_auth_util.cc

Issue 1136643004: Switch remaining functions from SchemeIsSecure() to SchemeIsCryptographic(). (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Rebasing. Created 5 years, 7 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 | « extensions/browser/updater/extension_downloader.cc ('k') | ios/web/net/request_tracker_impl.mm » ('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 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();
« no previous file with comments | « extensions/browser/updater/extension_downloader.cc ('k') | ios/web/net/request_tracker_impl.mm » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698