| Index: chrome/browser/ui/cocoa/tabs/tab_projecting_image_view.mm
|
| diff --git a/chrome/browser/ui/cocoa/tabs/tab_projecting_image_view.mm b/chrome/browser/ui/cocoa/tabs/tab_projecting_image_view.mm
|
| index b811fb18c9aa1bfc5faec584cb909a0d5ed6c0fd..1cfa8a4dc0360b1f846b3262164e99f0b5229269 100644
|
| --- a/chrome/browser/ui/cocoa/tabs/tab_projecting_image_view.mm
|
| +++ b/chrome/browser/ui/cocoa/tabs/tab_projecting_image_view.mm
|
| @@ -10,12 +10,14 @@
|
| backgroundImage:(NSImage*)backgroundImage
|
| projectorImage:(NSImage*)projectorImage
|
| throbImage:(NSImage*)throbImage
|
| - durationMS:(int)durationMS {
|
| + durationMS:(int)durationMS
|
| + animationContainer:(ui::AnimationContainer*)animationContainer {
|
| if ((self = [super initWithFrame:rect
|
| backgroundImage:backgroundImage
|
| throbImage:throbImage
|
| durationMS:durationMS
|
| - throbPosition:kThrobPositionOverlay])) {
|
| + throbPosition:kThrobPositionOverlay
|
| + animationContainer:animationContainer])) {
|
| projectorImage_.reset([projectorImage retain]);
|
| }
|
| return self;
|
|
|