summaryrefslogtreecommitdiffstats
path: root/chrome/browser/browser.h
diff options
context:
space:
mode:
authorben@chromium.org <ben@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2008-11-14 22:40:44 +0000
committerben@chromium.org <ben@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2008-11-14 22:40:44 +0000
commitafb738834f1e43f4607f1d5d00bae23aa740dbaa (patch)
treed12bcf05a51aeb5369b72c1ee838e984a7b9d76f /chrome/browser/browser.h
parent5a068bd029b1d28374f0cf26cbb74bc1ef33bd0c (diff)
downloadchromium_src-afb738834f1e43f4607f1d5d00bae23aa740dbaa.zip
chromium_src-afb738834f1e43f4607f1d5d00bae23aa740dbaa.tar.gz
chromium_src-afb738834f1e43f4607f1d5d00bae23aa740dbaa.tar.bz2
Rewire the throbber so that the timer for updating lives on BrowserView, not TabStrip, so that app window/popup throbber updating doesn't need to be plumbed through the tabstrip and the browser object!
http://crbug.com/3297 Review URL: http://codereview.chromium.org/10761 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@5513 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'chrome/browser/browser.h')
-rw-r--r--chrome/browser/browser.h4
1 files changed, 3 insertions, 1 deletions
diff --git a/chrome/browser/browser.h b/chrome/browser/browser.h
index 353ab4b..a1ff84e 100644
--- a/chrome/browser/browser.h
+++ b/chrome/browser/browser.h
@@ -108,6 +108,9 @@ class Browser : public TabStripModelDelegate,
// Gets the title of the page in the selected tab.
std::wstring GetCurrentPageTitle() const;
+ // Returns true if the current page is loading.
+ bool IsCurrentPageLoading() const;
+
// Prepares a title string for display (removes embedded newlines, etc).
static void FormatTitleForDisplay(std::wstring* title);
@@ -304,7 +307,6 @@ class Browser : public TabStripModelDelegate,
SiteInstance* instance) const;
virtual bool CanDuplicateContentsAt(int index);
virtual void DuplicateContentsAt(int index);
- virtual void ValidateLoadingAnimations();
virtual void CloseFrameAfterDragSession();
// Overridden from TabStripModelObserver: