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

Unified Diff: content/browser/loader/mime_sniffing_resource_handler.cc

Issue 2315443003: Stop sending serialized SSLStatus to the renderer. (Closed)
Patch Set: self review fix and merge fix Created 4 years, 3 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: content/browser/loader/mime_sniffing_resource_handler.cc
diff --git a/content/browser/loader/mime_sniffing_resource_handler.cc b/content/browser/loader/mime_sniffing_resource_handler.cc
index 6813f3e8ea5a1554e83a79fb38287c17a26b998f..44a600c23a993bc356a060041ee3b521845a5e36 100644
--- a/content/browser/loader/mime_sniffing_resource_handler.cc
+++ b/content/browser/loader/mime_sniffing_resource_handler.cc
@@ -218,13 +218,12 @@ bool MimeSniffingResourceHandler::OnReadCompleted(int bytes_read, bool* defer) {
void MimeSniffingResourceHandler::OnResponseCompleted(
const net::URLRequestStatus& status,
- const std::string& security_info,
bool* defer) {
// Upon completion, act like a pass-through handler in case the downstream
// handler defers OnResponseCompleted.
state_ = STATE_STREAMING;
- next_handler_->OnResponseCompleted(status, security_info, defer);
+ next_handler_->OnResponseCompleted(status, defer);
}
void MimeSniffingResourceHandler::Resume() {

Powered by Google App Engine
This is Rietveld 408576698