From 6eca5f19ffabd672349df42595551e7a4b1da987 Mon Sep 17 00:00:00 2001 From: "tony@chromium.org" Date: Fri, 13 Nov 2009 00:54:47 +0000 Subject: Fix a bug where we were setting the mime-type to the full content-type (e.g., text/html; charset=utf-8) in multipart responses. This fixes a bug where e.g., CUPS pages wouldn't be rendered properly. BUG=25217 TEST=Covered by unittests. Review URL: http://codereview.chromium.org/385046 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@31867 0039d316-1c4b-4281-b951-d872f2087c98 --- webkit/glue/multipart_response_delegate.h | 3 +++ 1 file changed, 3 insertions(+) (limited to 'webkit/glue/multipart_response_delegate.h') diff --git a/webkit/glue/multipart_response_delegate.h b/webkit/glue/multipart_response_delegate.h index 6a558b7..8ac496e 100644 --- a/webkit/glue/multipart_response_delegate.h +++ b/webkit/glue/multipart_response_delegate.h @@ -51,6 +51,7 @@ #include +#include "base/basictypes.h" #include "third_party/WebKit/WebKit/chromium/public/WebURLResponse.h" namespace WebKit { @@ -128,6 +129,8 @@ class MultipartResponseDelegate { // true when we're done sending information. At that point, we stop // processing AddData requests. bool stop_sending_; + + DISALLOW_COPY_AND_ASSIGN(MultipartResponseDelegate); }; } // namespace webkit_glue -- cgit v1.1