diff options
author | sky@chromium.org <sky@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2009-10-23 17:19:03 +0000 |
---|---|---|
committer | sky@chromium.org <sky@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2009-10-23 17:19:03 +0000 |
commit | f1cd5e88af6f0d088d7b90a8f4b69da63aa994af (patch) | |
tree | ba1f8cd8109f97b8f7b559f1cda022d9485d00ca /chrome/browser/views/tabs/tab_strip.cc | |
parent | 00f6b77b89dcd900c873ed9da13dbaa2e90fe022 (diff) | |
download | chromium_src-f1cd5e88af6f0d088d7b90a8f4b69da63aa994af.zip chromium_src-f1cd5e88af6f0d088d7b90a8f4b69da63aa994af.tar.gz chromium_src-f1cd5e88af6f0d088d7b90a8f4b69da63aa994af.tar.bz2 |
Makes inactive pinned tabs on linux throb when the title changes. I
need to resolve with Glen/Nicholas how to handle the windows side.
BUG=25308
TEST=none
Review URL: http://codereview.chromium.org/314010
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@29903 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'chrome/browser/views/tabs/tab_strip.cc')
-rw-r--r-- | chrome/browser/views/tabs/tab_strip.cc | 11 |
1 files changed, 9 insertions, 2 deletions
diff --git a/chrome/browser/views/tabs/tab_strip.cc b/chrome/browser/views/tabs/tab_strip.cc index d94aa9a..d2fd993 100644 --- a/chrome/browser/views/tabs/tab_strip.cc +++ b/chrome/browser/views/tabs/tab_strip.cc @@ -1076,11 +1076,18 @@ void TabStrip::TabMoved(TabContents* contents, int from_index, int to_index, } void TabStrip::TabChangedAt(TabContents* contents, int index, - bool loading_only) { + TabChangeType change_type) { // Index is in terms of the model. Need to make sure we adjust that index in // case we have an animation going. Tab* tab = GetTabAtAdjustForAnimation(index); - tab->UpdateData(contents, loading_only); + if (change_type == TITLE_NOT_LOADING) { + // TODO(sky): make this work. + // if (tab->is_pinned() && !tab->IsSelected()) + // tab->StartPinnedTabTitleAnimation(); + // We'll receive another notification of the change asynchronously. + return; + } + tab->UpdateData(contents, change_type == LOADING_ONLY); tab->UpdateFromModel(); } |