diff options
author | sky@chromium.org <sky@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2010-05-27 14:54:15 +0000 |
---|---|---|
committer | sky@chromium.org <sky@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2010-05-27 14:54:15 +0000 |
commit | b68becccf8fd9deb39346f1d36413817ab924e78 (patch) | |
tree | 0fa25577bf4034d9e5e380fdfb9f0b7a9d82d564 /chrome/browser/views/tabs/base_tab_strip.h | |
parent | 539d8f80f984dfed455b40533df0ad5d15e2c2ba (diff) | |
download | chromium_src-b68becccf8fd9deb39346f1d36413817ab924e78.zip chromium_src-b68becccf8fd9deb39346f1d36413817ab924e78.tar.gz chromium_src-b68becccf8fd9deb39346f1d36413817ab924e78.tar.bz2 |
Adds the new tab button to side tabs.
BUG=none
TEST=none
Review URL: http://codereview.chromium.org/2224003
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@48389 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'chrome/browser/views/tabs/base_tab_strip.h')
-rw-r--r-- | chrome/browser/views/tabs/base_tab_strip.h | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/chrome/browser/views/tabs/base_tab_strip.h b/chrome/browser/views/tabs/base_tab_strip.h index ded0b07..244edb2 100644 --- a/chrome/browser/views/tabs/base_tab_strip.h +++ b/chrome/browser/views/tabs/base_tab_strip.h @@ -104,7 +104,7 @@ class BaseTabStrip : public views::View, virtual void TabTitleChangedNotLoading(int model_index) = 0; // Sets the tab data at the specified model index. - virtual void SetTabData(int model_index, const TabRendererData& data) = 0; + virtual void SetTabData(int model_index, const TabRendererData& data); // Returns the tab at the specified model index. virtual BaseTab* GetBaseTabAtModelIndex(int model_index) const; @@ -183,6 +183,9 @@ class BaseTabStrip : public views::View, // Starts the remove tab animation. virtual void StartRemoveTabAnimation(int model_index); + // Starts the mini-tab animation. + virtual void StartMiniTabAnimation(); + // Returns whether the highlight button should be highlighted after a remove. virtual bool ShouldHighlightCloseButtonAfterRemove() { return true; } |