diff options
author | jungshik@google.com <jungshik@google.com@0039d316-1c4b-4281-b951-d872f2087c98> | 2008-10-22 20:23:52 +0000 |
---|---|---|
committer | jungshik@google.com <jungshik@google.com@0039d316-1c4b-4281-b951-d872f2087c98> | 2008-10-22 20:23:52 +0000 |
commit | 50dd8bb2e19a67adcef0f3bfbabd935a4e94de3c (patch) | |
tree | b6880001fbf5fc69c2c7417ca26682d3629062ed /chrome/browser/tab_contents.h | |
parent | a74c9d049e625be4b542697e1a77c10364dc7cd2 (diff) | |
download | chromium_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/tab_contents.h')
-rw-r--r-- | chrome/browser/tab_contents.h | 7 |
1 files changed, 0 insertions, 7 deletions
diff --git a/chrome/browser/tab_contents.h b/chrome/browser/tab_contents.h index 899a63e..2b55c35 100644 --- a/chrome/browser/tab_contents.h +++ b/chrome/browser/tab_contents.h @@ -209,11 +209,6 @@ class TabContents : public PageNavigator, // Returns a human-readable description the tab's loading state. virtual std::wstring GetStatusText() const { return std::wstring(); } - const std::wstring& encoding() { return encoding_name_; } - void set_encoding(const std::wstring& encoding_name) { - encoding_name_ = encoding_name; - } - // Return whether this tab contents is loading a resource. bool is_loading() const { return is_loading_; } @@ -518,8 +513,6 @@ class TabContents : public PageNavigator, // The id used in the ViewStorage to store the last focused view. int last_focused_view_storage_id_; - std::wstring encoding_name_; - // See capturing_contents() above. bool capturing_contents_; |