| Index: chrome/browser/ui/cocoa/passwords/passwords_bubble_controller.mm
|
| diff --git a/chrome/browser/ui/cocoa/passwords/passwords_bubble_controller.mm b/chrome/browser/ui/cocoa/passwords/passwords_bubble_controller.mm
|
| index b9139d271ce16be4d3c7e7a38f6f4128bbb3624f..4afa92bd3eb4f45e5db1dc696074c4ed73cef68a 100644
|
| --- a/chrome/browser/ui/cocoa/passwords/passwords_bubble_controller.mm
|
| +++ b/chrome/browser/ui/cocoa/passwords/passwords_bubble_controller.mm
|
| @@ -15,6 +15,7 @@
|
| #import "chrome/browser/ui/cocoa/passwords/manage_passwords_view_controller.h"
|
| #import "chrome/browser/ui/cocoa/passwords/save_pending_password_view_controller.h"
|
| #import "chrome/browser/ui/cocoa/passwords/update_pending_password_view_controller.h"
|
| +#include "ui/base/cocoa/cocoa_base_utils.h"
|
| #include "ui/base/cocoa/window_size_constants.h"
|
|
|
| @interface ManagePasswordsBubbleController ()
|
| @@ -115,7 +116,8 @@
|
| [[self bubble] setArrowLocation:arrow];
|
|
|
| // Update the anchor point.
|
| - anchorPoint = [[self parentWindow] convertBaseToScreen:anchorPoint];
|
| + anchorPoint =
|
| + ui::ConvertPointFromWindowToScreen([self parentWindow], anchorPoint);
|
| [self setAnchorPoint:anchorPoint];
|
|
|
| // Update the frame.
|
|
|