diff options
author | beaudoin@chromium.org <beaudoin@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2011-07-21 14:43:51 +0000 |
---|---|---|
committer | beaudoin@chromium.org <beaudoin@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2011-07-21 14:43:51 +0000 |
commit | f5d978cfcc87e29ac3284d9c518770d24c529699 (patch) | |
tree | f10f4a851d5a86499792ba525522456ce2da1b42 /chrome/browser/extensions/extension_browser_event_router.cc | |
parent | 4f27ff905f70604752d3365d813405a5122282de (diff) | |
download | chromium_src-f5d978cfcc87e29ac3284d9c518770d24c529699.zip chromium_src-f5d978cfcc87e29ac3284d9c518770d24c529699.tar.gz chromium_src-f5d978cfcc87e29ac3284d9c518770d24c529699.tar.bz2 |
Ensures history tab displays a throbber when searching.
When performing a long running search in the history, turn on the tab thobber to indicate that an operation is in progress.
BUG=14730
TEST=Ensure you have a large browsing history, go to chrome://history, search for something, notice the throbber come on.
Review URL: http://codereview.chromium.org/7399007
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@93392 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'chrome/browser/extensions/extension_browser_event_router.cc')
-rw-r--r-- | chrome/browser/extensions/extension_browser_event_router.cc | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/chrome/browser/extensions/extension_browser_event_router.cc b/chrome/browser/extensions/extension_browser_event_router.cc index 9b723d3..fb9f6ba 100644 --- a/chrome/browser/extensions/extension_browser_event_router.cc +++ b/chrome/browser/extensions/extension_browser_event_router.cc @@ -35,7 +35,7 @@ DictionaryValue* ExtensionBrowserEventRouter::TabEntry::UpdateLoadState( // The tab may go in & out of loading (for instance if iframes navigate). // We only want to respond to the first change from loading to !loading after // the NAV_ENTRY_COMMITTED was fired. - if (!complete_waiting_on_load_ || contents->is_loading()) + if (!complete_waiting_on_load_ || contents->IsLoading()) return NULL; // Send "complete" state change. |