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

Unified Diff: content/child/resource_dispatcher_unittest.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
« no previous file with comments | « content/child/resource_dispatcher.cc ('k') | content/child/url_response_body_consumer_unittest.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: content/child/resource_dispatcher_unittest.cc
diff --git a/content/child/resource_dispatcher_unittest.cc b/content/child/resource_dispatcher_unittest.cc
index 806fd26ad08801a78ba400f5a79b50f32ef77bce..27746e7cb1dba3416d89dc40a162d94459bbef49 100644
--- a/content/child/resource_dispatcher_unittest.cc
+++ b/content/child/resource_dispatcher_unittest.cc
@@ -96,7 +96,6 @@ class TestRequestPeer : public RequestPeer {
void OnCompletedRequest(int error_code,
bool was_ignored_by_handler,
bool stale_copy_in_cache,
- const std::string& security_info,
const base::TimeTicks& completion_time,
int64_t total_transfer_size) override {
if (context_->cancelled)
@@ -547,7 +546,6 @@ class TestResourceDispatcherDelegate : public ResourceDispatcherDelegate {
void OnCompletedRequest(int error_code,
bool was_ignored_by_handler,
bool stale_copy_in_cache,
- const std::string& security_info,
const base::TimeTicks& completion_time,
int64_t total_transfer_size) override {
original_peer_->OnReceivedResponse(response_info_);
@@ -556,8 +554,8 @@ class TestResourceDispatcherDelegate : public ResourceDispatcherDelegate {
data_.data(), data_.size(), -1, data_.size()));
}
original_peer_->OnCompletedRequest(error_code, was_ignored_by_handler,
- stale_copy_in_cache, security_info,
- completion_time, total_transfer_size);
+ stale_copy_in_cache, completion_time,
+ total_transfer_size);
}
private:
« no previous file with comments | « content/child/resource_dispatcher.cc ('k') | content/child/url_response_body_consumer_unittest.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698