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

Unified Diff: content/browser/renderer_host/buffered_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/buffered_resource_handler.cc
diff --git a/content/browser/renderer_host/buffered_resource_handler.cc b/content/browser/renderer_host/buffered_resource_handler.cc
index 11db2dfa48eb05854b425f675d7fc42d79a685f1..fab935bf9b248812cb21fc436714e27de6e4cf44 100644
--- a/content/browser/renderer_host/buffered_resource_handler.cc
+++ b/content/browser/renderer_host/buffered_resource_handler.cc
@@ -164,7 +164,8 @@ bool BufferedResourceHandler::DelayResponse() {
const bool sniffing_blocked =
LowerCaseEqualsASCII(content_type_options, "nosniff");
const bool not_modified_status =
- response_->headers && response_->headers->response_code() == 304;
+ (response_->head.headers &&
+ response_->head.headers->response_code() == 304);
const bool we_would_like_to_sniff = not_modified_status ?
false : net::ShouldSniffMimeType(request_->url(), mime_type);
@@ -184,7 +185,7 @@ bool BufferedResourceHandler::DelayResponse() {
// mime type. What's a browser to do? Turns out, we're supposed to treat
// the response as "text/plain". This is the most secure option.
mime_type.assign("text/plain");
- response_->mime_type.assign(mime_type);
+ response_->head.mime_type.assign(mime_type);
}
if (!not_modified_status && ShouldWaitForPlugins()) {
@@ -231,7 +232,7 @@ bool BufferedResourceHandler::KeepBuffering(int bytes_read) {
}
}
sniff_content_ = false;
- response_->mime_type.assign(new_type);
+ response_->head.mime_type.assign(new_type);
// We just sniffed the mime type, maybe there is a doctype to process.
if (ShouldWaitForPlugins())
@@ -260,8 +261,8 @@ bool BufferedResourceHandler::CompleteResponseStarted(int request_id,
// are doing it for an X.509 client certificates.
// TODO(darin): This does not belong here!
- if (response_->headers && // Can be NULL if FTP.
- response_->headers->response_code() / 100 != 2) {
+ if (response_->head.headers && // Can be NULL if FTP.
+ response_->head.headers->response_code() / 100 != 2) {
// The response code indicates that this is an error page, but we are
// expecting an X.509 user certificate. We follow Firefox here and show
// our own error page instead of handling the error page as a
@@ -282,9 +283,8 @@ bool BufferedResourceHandler::CompleteResponseStarted(int request_id,
if (info->allow_download() && ShouldDownload(NULL)) {
// Forward the data to the download thread.
-
- if (response_->headers && // Can be NULL if FTP.
- response_->headers->response_code() / 100 != 2) {
+ if (response_->head.headers && // Can be NULL if FTP.
+ response_->head.headers->response_code() / 100 != 2) {
// The response code indicates that this is an error page, but we don't
// know how to display the content. We follow Firefox here and show our
// own error page instead of triggering a download.
@@ -328,7 +328,7 @@ bool BufferedResourceHandler::ShouldWaitForPlugins() {
bool BufferedResourceHandler::ShouldDownload(bool* need_plugin_list) {
if (need_plugin_list)
*need_plugin_list = false;
- std::string type = StringToLowerASCII(response_->mime_type);
+ std::string type = StringToLowerASCII(response_->head.mime_type);
// First, examine Content-Disposition.
std::string disposition;
« no previous file with comments | « content/browser/renderer_host/async_resource_handler.cc ('k') | content/browser/renderer_host/cross_site_resource_handler.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698