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

Unified Diff: chrome/plugin/chrome_plugin_host.cc

Issue 113069: Content-Dispositon handling fix #2. Still WiP. Uploading as a check point.... Base URL: svn://chrome-svn/chrome/trunk/src/
Patch Set: Created 11 years, 7 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 | « chrome/common/resource_dispatcher.cc ('k') | chrome/renderer/media/buffered_data_source.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: chrome/plugin/chrome_plugin_host.cc
===================================================================
--- chrome/plugin/chrome_plugin_host.cc (revision 15413)
+++ chrome/plugin/chrome_plugin_host.cc (working copy)
@@ -155,7 +155,13 @@
ResourceType::OBJECT,
cprequest_->context,
WebAppCacheContext::kNoAppCacheContextId,
- MSG_ROUTING_CONTROL));
+ MSG_ROUTING_CONTROL,
+ // TODO(jungshik): disposition_fallback_charset can be
+ // useful if there's a plugin utilizing it (e.g. Flash
+ // can use this to determine the character encoding,
+ // but currently it does not leading to garbled strings
+ // when strings are in so-called "ANSI" rather than Unicode).
+ ""));
if (!bridge_.get())
return CPERR_FAILURE;
« no previous file with comments | « chrome/common/resource_dispatcher.cc ('k') | chrome/renderer/media/buffered_data_source.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698