| Index: chrome/browser/ui/cocoa/location_bar/security_state_bubble_decoration.mm
|
| diff --git a/chrome/browser/ui/cocoa/location_bar/security_state_bubble_decoration.mm b/chrome/browser/ui/cocoa/location_bar/security_state_bubble_decoration.mm
|
| index 6ec3fd959f57e9a5ceccfd1d3fc96f7f57effea0..f092a09b85d4cd01b2cadc459d961dbdfc7e60bf 100644
|
| --- a/chrome/browser/ui/cocoa/location_bar/security_state_bubble_decoration.mm
|
| +++ b/chrome/browser/ui/cocoa/location_bar/security_state_bubble_decoration.mm
|
| @@ -43,6 +43,7 @@ const CGFloat kRetinaBaselineOffset = 0.5;
|
|
|
| // The info-bubble point should look like it points to the bottom of the lock
|
| // icon. Determined with Pixie.app.
|
| +const CGFloat kPageInfoBubblePointXOffset = 5.0;
|
| const CGFloat kPageInfoBubblePointYOffset = 6.0;
|
|
|
| // Minimum acceptable width for the ev bubble.
|
| @@ -273,7 +274,7 @@ bool SecurityStateBubbleDecoration::AcceptsMousePress() {
|
|
|
| NSPoint SecurityStateBubbleDecoration::GetBubblePointInFrame(NSRect frame) {
|
| NSRect image_rect = GetImageRectInFrame(frame);
|
| - return NSMakePoint(NSMidX(image_rect),
|
| + return NSMakePoint(NSMidX(image_rect) + kPageInfoBubblePointXOffset,
|
| NSMaxY(image_rect) - kPageInfoBubblePointYOffset);
|
| }
|
|
|
|
|