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

Unified Diff: content/browser/renderer_host/x509_user_cert_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
« no previous file with comments | « content/browser/renderer_host/sync_resource_handler.cc ('k') | content/public/common/resource_response.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: content/browser/renderer_host/x509_user_cert_resource_handler.cc
diff --git a/content/browser/renderer_host/x509_user_cert_resource_handler.cc b/content/browser/renderer_host/x509_user_cert_resource_handler.cc
index f66fdb68160745dea3d75c5b74575dcedfdc902a..5132f977848a3b358b9abf6e55eb507019b5d8cd 100644
--- a/content/browser/renderer_host/x509_user_cert_resource_handler.cc
+++ b/content/browser/renderer_host/x509_user_cert_resource_handler.cc
@@ -50,7 +50,7 @@ bool X509UserCertResourceHandler::OnRequestRedirected(int request_id,
bool X509UserCertResourceHandler::OnResponseStarted(int request_id,
ResourceResponse* resp,
bool* defer) {
- return (resp->mime_type == "application/x-x509-user-cert");
+ return (resp->head.mime_type == "application/x-x509-user-cert");
}
bool X509UserCertResourceHandler::OnWillStart(int request_id,
« no previous file with comments | « content/browser/renderer_host/sync_resource_handler.cc ('k') | content/public/common/resource_response.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698