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

Unified Diff: content/browser/loader/intercepting_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/intercepting_resource_handler.cc
diff --git a/content/browser/loader/intercepting_resource_handler.cc b/content/browser/loader/intercepting_resource_handler.cc
index 4fa27f115eb820f92228344f3a149594a948fbae..08907205397cc3fd52b3e9797f5094ab6ae2d0e2 100644
--- a/content/browser/loader/intercepting_resource_handler.cc
+++ b/content/browser/loader/intercepting_resource_handler.cc
@@ -125,7 +125,7 @@ void InterceptingResourceHandler::SendPayloadToOldHandler() {
// If there is no payload, just finalize the request on the old handler.
net::URLRequestStatus status(net::URLRequestStatus::CANCELED,
net::ERR_ABORTED);
- next_handler_->OnResponseCompleted(status, std::string(), &defer_ignored);
+ next_handler_->OnResponseCompleted(status, &defer_ignored);
DCHECK(!defer_ignored);
return;
}
@@ -156,7 +156,7 @@ void InterceptingResourceHandler::SendPayloadToOldHandler() {
// Finalize the request.
net::URLRequestStatus status(net::URLRequestStatus::SUCCESS, 0);
- next_handler_->OnResponseCompleted(status, std::string(), &defer_ignored);
+ next_handler_->OnResponseCompleted(status, &defer_ignored);
DCHECK(!defer_ignored);
}

Powered by Google App Engine
This is Rietveld 408576698