| Index: chrome/browser/ui/views/tabs/browser_tab_strip_controller.cc
|
| diff --git a/chrome/browser/ui/views/tabs/browser_tab_strip_controller.cc b/chrome/browser/ui/views/tabs/browser_tab_strip_controller.cc
|
| index efb0ceb5929f1f8d438dfe2c0c98ea08e369b0d5..93e2d7dfc542839e065294813e70f529a5c1e698 100644
|
| --- a/chrome/browser/ui/views/tabs/browser_tab_strip_controller.cc
|
| +++ b/chrome/browser/ui/views/tabs/browser_tab_strip_controller.cc
|
| @@ -312,7 +312,7 @@ void BrowserTabStripController::UpdateLoadingAnimations() {
|
| // Don't use the model count here as it's possible for this to be invoked
|
| // before we've applied an update from the model (Browser::TabInsertedAt may
|
| // be processed before us and invokes this).
|
| - for (int i = 0, tab_count = tabstrip_->tab_count(); i < tab_count; ++i) {
|
| + for (int i = 0, tab_count = tabstrip_->GetTabCount(); i < tab_count; ++i) {
|
| if (model_->ContainsIndex(i)) {
|
| Tab* tab = tabstrip_->tab_at(i);
|
| WebContents* contents = model_->GetWebContentsAt(i);
|
|
|