summaryrefslogtreecommitdiffstats
path: root/chrome/browser/render_view_host.h
diff options
context:
space:
mode:
authorjungshik@google.com <jungshik@google.com@0039d316-1c4b-4281-b951-d872f2087c98>2008-10-22 20:23:52 +0000
committerjungshik@google.com <jungshik@google.com@0039d316-1c4b-4281-b951-d872f2087c98>2008-10-22 20:23:52 +0000
commit50dd8bb2e19a67adcef0f3bfbabd935a4e94de3c (patch)
treeb6880001fbf5fc69c2c7417ca26682d3629062ed /chrome/browser/render_view_host.h
parenta74c9d049e625be4b542697e1a77c10364dc7cd2 (diff)
downloadchromium_src-50dd8bb2e19a67adcef0f3bfbabd935a4e94de3c.zip
chromium_src-50dd8bb2e19a67adcef0f3bfbabd935a4e94de3c.tar.gz
chromium_src-50dd8bb2e19a67adcef0f3bfbabd935a4e94de3c.tar.bz2
Make the character encoding override work again. There are two other bugs with character encoding override, but it seems that it's better to fix them separately.
BUG=3315 Review URL: http://codereview.chromium.org/7647 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@3759 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'chrome/browser/render_view_host.h')
-rw-r--r--chrome/browser/render_view_host.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/chrome/browser/render_view_host.h b/chrome/browser/render_view_host.h
index 8bf8e7f..70214b9 100644
--- a/chrome/browser/render_view_host.h
+++ b/chrome/browser/render_view_host.h
@@ -189,7 +189,7 @@ class RenderViewHost : public RenderWidgetHost {
void Zoom(PageZoom::Function function);
// Change the encoding of the page.
- void SetPageEncoding(const std::wstring& encoding_name);
+ void SetPageEncoding(const std::wstring& encoding);
// Change the alternate error page URL. An empty GURL disables the use of
// alternate error pages.
@@ -408,7 +408,7 @@ class RenderViewHost : public RenderWidgetHost {
const std::wstring& title,
const std::string& state);
void OnMsgUpdateTitle(int32 page_id, const std::wstring& title);
- void OnMsgUpdateEncoding(const std::wstring& encoding_name);
+ void OnMsgUpdateEncoding(const std::wstring& encoding);
void OnMsgUpdateTargetURL(int32 page_id, const GURL& url);
void OnMsgThumbnail(const IPC::Message& msg);
void OnMsgClose();