| Index: chrome/browser/ui/cocoa/tabs/tab_strip_controller.mm
|
| diff --git a/chrome/browser/ui/cocoa/tabs/tab_strip_controller.mm b/chrome/browser/ui/cocoa/tabs/tab_strip_controller.mm
|
| index b89ffb1fd753decb8b3552a601d9d615dfc7941f..08f2e1bfccd57fc48e342f8219b571e36107ab95 100644
|
| --- a/chrome/browser/ui/cocoa/tabs/tab_strip_controller.mm
|
| +++ b/chrome/browser/ui/cocoa/tabs/tab_strip_controller.mm
|
| @@ -1576,10 +1576,12 @@ NSImage* Overlay(NSImage* ground, NSImage* overlay, CGFloat alpha) {
|
| if (contents->IsCrashed()) {
|
| newState = kTabCrashed;
|
| newHasIcon = true;
|
| - } else if (contents->IsWaitingForResponse()) {
|
| + } else if (contents->IsWaitingForResponse() &&
|
| + contents->IsLoadToDifferentDocument()) {
|
| newState = kTabWaiting;
|
| throbberImage = throbberWaitingImage;
|
| - } else if (contents->IsLoading()) {
|
| + } else if (contents->IsLoading() &&
|
| + contents->IsLoadToDifferentDocument()) {
|
| newState = kTabLoading;
|
| throbberImage = throbberLoadingImage;
|
| }
|
|
|