| Index: chrome/browser/ui/cocoa/info_bubble_view.mm
|
| diff --git a/chrome/browser/ui/cocoa/info_bubble_view.mm b/chrome/browser/ui/cocoa/info_bubble_view.mm
|
| index 81eade77d4e0d81c36eafcffdbca58452dc398a5..103db6b5c53aec31832439218d82df5890de7983 100644
|
| --- a/chrome/browser/ui/cocoa/info_bubble_view.mm
|
| +++ b/chrome/browser/ui/cocoa/info_bubble_view.mm
|
| @@ -129,4 +129,12 @@
|
| backgroundColor_.reset([backgroundColor retain]);
|
| }
|
|
|
| +- (void)setArrowLocation:(info_bubble::BubbleArrowLocation)location {
|
| + if (arrowLocation_ == location)
|
| + return;
|
| +
|
| + arrowLocation_ = location;
|
| + [self setNeedsDisplayInRect:[self bounds]];
|
| +}
|
| +
|
| @end
|
|
|