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

Unified Diff: net/http/http_network_transaction.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: net/http/http_network_transaction.cc
diff --git a/net/http/http_network_transaction.cc b/net/http/http_network_transaction.cc
index b5e5d5c1a24efb6ea8b784f93c53f49c65fae882..4652e820a7f6e6929e5b3856f413704ef94308a7 100644
--- a/net/http/http_network_transaction.cc
+++ b/net/http/http_network_transaction.cc
@@ -582,7 +582,7 @@ void HttpNetworkTransaction::OnHttpsProxyTunnelResponse(
}
bool HttpNetworkTransaction::IsSecureRequest() const {
- return request_->url.SchemeIsSecure();
+ return request_->url.SchemeIsCryptographic();
}
bool HttpNetworkTransaction::UsingHttpProxyWithoutTunnel() const {

Powered by Google App Engine
This is Rietveld 408576698