| 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 0c12eece09bea16e419c01c21e13e407407f6cd9..b84dc3a62295f2a9b906cb3c503fe0de4c3787a6 100644
|
| --- a/chrome/browser/ui/cocoa/tabs/tab_strip_controller.mm
|
| +++ b/chrome/browser/ui/cocoa/tabs/tab_strip_controller.mm
|
| @@ -1611,8 +1611,10 @@ NSImage* Overlay(NSImage* ground, NSImage* overlay, CGFloat alpha) {
|
| [[tabController mediaIndicatorView]
|
| updateIndicator:TAB_MEDIA_STATE_NONE];
|
| } else {
|
| - iconView =
|
| - [[[SpriteView alloc] initWithImage:throbberImage] autorelease];
|
| + NSRect frame =
|
| + NSMakeRect(0, 0, kIconWidthAndHeight, kIconWidthAndHeight);
|
| + iconView = [ThrobberView filmstripThrobberViewWithFrame:frame
|
| + image:throbberImage];
|
| }
|
| }
|
|
|
|
|