summaryrefslogtreecommitdiffstats
path: root/chrome/browser/tab_contents
diff options
context:
space:
mode:
authorevan@chromium.org <evan@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2009-02-19 03:37:12 +0000
committerevan@chromium.org <evan@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2009-02-19 03:37:12 +0000
commitbe06a75bb612b0652f7ba926668b94671b9c6ab8 (patch)
treebc2efae1a3e66d97e0c6b0c9b95f72793b794398 /chrome/browser/tab_contents
parentefedc412986c570f16b54e58bb5edc47546e0eee (diff)
downloadchromium_src-be06a75bb612b0652f7ba926668b94671b9c6ab8.zip
chromium_src-be06a75bb612b0652f7ba926668b94671b9c6ab8.tar.gz
chromium_src-be06a75bb612b0652f7ba926668b94671b9c6ab8.tar.bz2
Super-simplistic status bubble on Linux.
(I just want to see when pages are loading, y'know...) Review URL: http://codereview.chromium.org/21500 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@10004 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'chrome/browser/tab_contents')
-rw-r--r--chrome/browser/tab_contents/web_contents.cc3
1 files changed, 0 insertions, 3 deletions
diff --git a/chrome/browser/tab_contents/web_contents.cc b/chrome/browser/tab_contents/web_contents.cc
index c1c0fd9..575714e 100644
--- a/chrome/browser/tab_contents/web_contents.cc
+++ b/chrome/browser/tab_contents/web_contents.cc
@@ -357,11 +357,8 @@ std::wstring WebContents::GetStatusText() const {
case net::LOAD_STATE_SENDING_REQUEST:
return l10n_util::GetString(IDS_LOAD_STATE_SENDING_REQUEST);
case net::LOAD_STATE_WAITING_FOR_RESPONSE:
-#if defined(OS_WIN)
- // TODO(port): GetStringF() is currently disabled for non-win platforms.
return l10n_util::GetStringF(IDS_LOAD_STATE_WAITING_FOR_RESPONSE,
load_state_host_);
-#endif
// Ignore net::LOAD_STATE_READING_RESPONSE and net::LOAD_STATE_IDLE
case net::LOAD_STATE_IDLE:
case net::LOAD_STATE_READING_RESPONSE: