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

Unified Diff: content/browser/renderer_host/sync_resource_handler.cc

Issue 10416003: RefCounted types should not have public destructors (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: One more fix Created 8 years, 6 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/renderer_host/sync_resource_handler.cc
diff --git a/content/browser/renderer_host/sync_resource_handler.cc b/content/browser/renderer_host/sync_resource_handler.cc
index 90a098e88fc0e8baa7ef22e19d48d50439ad7720..4b770968023e23d7233de10dd48a9d521e29e467 100644
--- a/content/browser/renderer_host/sync_resource_handler.cc
+++ b/content/browser/renderer_host/sync_resource_handler.cc
@@ -72,16 +72,16 @@ bool SyncResourceHandler::OnResponseStarted(
DevToolsNetLogObserver::PopulateResponseInfo(request_, response);
// We don't care about copying the status here.
- result_.headers = response->headers;
- result_.mime_type = response->mime_type;
- result_.charset = response->charset;
- result_.download_file_path = response->download_file_path;
- result_.request_time = response->request_time;
- result_.response_time = response->response_time;
- result_.connection_id = response->connection_id;
- result_.connection_reused = response->connection_reused;
- result_.load_timing = response->load_timing;
- result_.devtools_info = response->devtools_info;
+ result_.headers = response->head.headers;
+ result_.mime_type = response->head.mime_type;
+ result_.charset = response->head.charset;
+ result_.download_file_path = response->head.download_file_path;
+ result_.request_time = response->head.request_time;
+ result_.response_time = response->head.response_time;
+ result_.connection_id = response->head.connection_id;
+ result_.connection_reused = response->head.connection_reused;
+ result_.load_timing = response->head.load_timing;
+ result_.devtools_info = response->head.devtools_info;
return true;
}
« no previous file with comments | « content/browser/renderer_host/resource_loader.cc ('k') | content/browser/renderer_host/x509_user_cert_resource_handler.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698