summaryrefslogtreecommitdiffstats
path: root/chrome/browser
diff options
context:
space:
mode:
authorrvargas@chromium.org <rvargas@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2011-11-04 02:01:20 +0000
committerrvargas@chromium.org <rvargas@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2011-11-04 02:01:20 +0000
commit760afa9837be0fb92b2994360743ccac35fe7384 (patch)
tree5c1a8005f4f360d3ccefd81106304936b38557aa /chrome/browser
parent8c69c8c74c98c49092b7f39c86e537e6abe8894a (diff)
downloadchromium_src-760afa9837be0fb92b2994360743ccac35fe7384.zip
chromium_src-760afa9837be0fb92b2994360743ccac35fe7384.tar.gz
chromium_src-760afa9837be0fb92b2994360743ccac35fe7384.tar.bz2
Add a LoadState for the AppCache
BUG=101972 TEST=none Review URL: http://codereview.chromium.org/8351047 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@108611 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'chrome/browser')
-rw-r--r--chrome/browser/ui/tab_contents/tab_contents_wrapper.cc2
1 files changed, 2 insertions, 0 deletions
diff --git a/chrome/browser/ui/tab_contents/tab_contents_wrapper.cc b/chrome/browser/ui/tab_contents/tab_contents_wrapper.cc
index 8d95117..0452e39 100644
--- a/chrome/browser/ui/tab_contents/tab_contents_wrapper.cc
+++ b/chrome/browser/ui/tab_contents/tab_contents_wrapper.cc
@@ -481,6 +481,8 @@ string16 TabContentsWrapper::GetStatusText() const {
tab_contents()->load_state().param);
case net::LOAD_STATE_WAITING_FOR_CACHE:
return l10n_util::GetStringUTF16(IDS_LOAD_STATE_WAITING_FOR_CACHE);
+ case net::LOAD_STATE_WAITING_FOR_APPCACHE:
+ return l10n_util::GetStringUTF16(IDS_LOAD_STATE_WAITING_FOR_APPCACHE);
case net::LOAD_STATE_ESTABLISHING_PROXY_TUNNEL:
return
l10n_util::GetStringUTF16(IDS_LOAD_STATE_ESTABLISHING_PROXY_TUNNEL);