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

Unified Diff: webkit/glue/multipart_response_delegate.cc

Issue 9296005: Delete net::GetHeaderParamValue (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src/
Patch Set: Delete net::GetHeaderParamValue Created 8 years, 11 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: webkit/glue/multipart_response_delegate.cc
===================================================================
--- webkit/glue/multipart_response_delegate.cc (revision 119592)
+++ webkit/glue/multipart_response_delegate.cc (working copy)
@@ -248,7 +248,7 @@
std::string charset;
bool has_charset = false;
net::HttpUtil::ParseContentType(content_type, &mime_type, &charset,
- &has_charset);
+ &has_charset, NULL);
WebURLResponse response(original_response_.url());
response.setMIMEType(WebString::fromUTF8(mime_type));
response.setTextEncodingName(WebString::fromUTF8(charset));

Powered by Google App Engine
This is Rietveld 408576698