Index: chrome/browser/ui/views/tabs/tab_strip.h |
diff --git a/chrome/browser/ui/views/tabs/tab_strip.h b/chrome/browser/ui/views/tabs/tab_strip.h |
index 3cb1f8af046d660c5936dd82c16e1e210be2ba66..7b27c271e20fc061b123457b987974c5fc69db81 100644 |
--- a/chrome/browser/ui/views/tabs/tab_strip.h |
+++ b/chrome/browser/ui/views/tabs/tab_strip.h |
@@ -170,6 +170,14 @@ class TabStrip : public views::View, |
// Sets a painting style with miniature "tab indicator" rectangles at the top. |
void SetImmersiveStyle(bool enable); |
+ // Returns true if Tabs in this TabStrip are currently changing size or |
+ // position. |
+ bool IsAnimating() const; |
+ |
+ // Stops any ongoing animations. If |layout| is true and an animation is |
+ // ongoing this does a layout. |
+ void StopAnimating(bool layout); |
+ |
// TabController overrides: |
virtual const ui::ListSelectionModel& GetSelectionModel() OVERRIDE; |
virtual bool SupportsMultipleSelection() OVERRIDE; |
@@ -301,10 +309,6 @@ class TabStrip : public views::View, |
// animation. |
void ScheduleRemoveTabAnimation(Tab* tab); |
- // Stops any ongoing animations. If |layout| is true and an animation is |
- // ongoing this does a layout. |
- void StopAnimating(bool layout); |
- |
// Animates all the views to their ideal bounds. |
// NOTE: this does *not* invoke GenerateIdealBounds, it uses the bounds |
// currently set in ideal_bounds. |
@@ -455,10 +459,6 @@ class TabStrip : public views::View, |
// -- Animations ------------------------------------------------------------ |
- // Returns true if Tabs in this TabStrip are currently changing size or |
- // position. |
- bool IsAnimating() const; |
- |
// Invoked prior to starting a new animation. |
void PrepareForAnimation(); |