| Index: chrome/browser/ui/views/tabs/tab_strip.cc
|
| diff --git a/chrome/browser/ui/views/tabs/tab_strip.cc b/chrome/browser/ui/views/tabs/tab_strip.cc
|
| index 42835490b6401cedfaf0876b52a6c1977048510f..0b48280cfd114d5b9796495ab2128b14d77274ef 100644
|
| --- a/chrome/browser/ui/views/tabs/tab_strip.cc
|
| +++ b/chrome/browser/ui/views/tabs/tab_strip.cc
|
| @@ -856,10 +856,6 @@ void TabStrip::TabTitleChangedNotLoading(int model_index) {
|
| tab->StartMiniTabTitleAnimation();
|
| }
|
|
|
| -int TabStrip::GetModelIndexOfTab(const Tab* tab) const {
|
| - return tabs_.GetIndexOfView(tab);
|
| -}
|
| -
|
| int TabStrip::GetModelCount() const {
|
| return controller_->GetCount();
|
| }
|
| @@ -1469,6 +1465,10 @@ views::View* TabStrip::GetTooltipHandlerForPoint(const gfx::Point& point) {
|
| return this;
|
| }
|
|
|
| +int TabStrip::GetModelIndexOfTab(const Tab* tab) const {
|
| + return tabs_.GetIndexOfView(tab);
|
| +}
|
| +
|
| // static
|
| int TabStrip::GetImmersiveHeight() {
|
| return Tab::GetImmersiveHeight();
|
|
|