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

Unified Diff: content/browser/loader/layered_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/layered_resource_handler.cc
diff --git a/content/browser/loader/layered_resource_handler.cc b/content/browser/loader/layered_resource_handler.cc
index 0f584bc7f3b50aad34e55f007e48e962b635ace1..133e492b1f04318066935475d63208f7c2d52f5f 100644
--- a/content/browser/loader/layered_resource_handler.cc
+++ b/content/browser/loader/layered_resource_handler.cc
@@ -63,10 +63,9 @@ bool LayeredResourceHandler::OnReadCompleted(int bytes_read, bool* defer) {
void LayeredResourceHandler::OnResponseCompleted(
const net::URLRequestStatus& status,
- const std::string& security_info,
bool* defer) {
DCHECK(next_handler_.get());
- next_handler_->OnResponseCompleted(status, security_info, defer);
+ next_handler_->OnResponseCompleted(status, defer);
}
void LayeredResourceHandler::OnDataDownloaded(int bytes_downloaded) {
« no previous file with comments | « content/browser/loader/layered_resource_handler.h ('k') | content/browser/loader/mime_sniffing_resource_handler.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698