Index: net/url_request/url_request_job.cc |
diff --git a/net/url_request/url_request_job.cc b/net/url_request/url_request_job.cc |
index ac051270ccf588a4164cf8e6b31267a6479c6ab5..d71a13b5e01d457e6d8ac8741ca247ac5e50f93c 100644 |
--- a/net/url_request/url_request_job.cc |
+++ b/net/url_request/url_request_job.cc |
@@ -190,6 +190,15 @@ void URLRequestJob::ContinueWithCertificate( |
NOTREACHED(); |
} |
+void URLRequestJob::ContinueWithTLSLogin() { |
+ NOTREACHED(); |
+} |
+ |
+void URLRequestJob::CancelTLSLogin() { |
+ // The derived class should implement this! |
+ NOTREACHED(); |
+} |
+ |
void URLRequestJob::ContinueDespiteLastError() { |
// Implementations should know how to recover from errors they generate. |
// If this code was reached, we are trying to recover from an error that |
@@ -883,7 +892,8 @@ void URLRequestJob::RecordCompressionHistograms() { |
// Only record for http or https urls. |
bool is_http = request_->url().SchemeIs("http"); |
- bool is_https = request_->url().SchemeIs("https"); |
+ bool is_https = request_->url().SchemeIs("https") || |
+ request_->url().SchemeIs("httpsv"); |
if (!is_http && !is_https) |
return; |