| Index: chrome/browser/ui/cocoa/website_settings/website_settings_bubble_controller.mm
|
| diff --git a/chrome/browser/ui/cocoa/website_settings/website_settings_bubble_controller.mm b/chrome/browser/ui/cocoa/website_settings/website_settings_bubble_controller.mm
|
| index 9934fcc271d6a31f21045de58e55df2ef41f146b..1a4dad158c18db01279cbda842a4218b348b5f4a 100644
|
| --- a/chrome/browser/ui/cocoa/website_settings/website_settings_bubble_controller.mm
|
| +++ b/chrome/browser/ui/cocoa/website_settings/website_settings_bubble_controller.mm
|
| @@ -41,6 +41,7 @@
|
| #include "grit/components_google_chrome_strings.h"
|
| #include "grit/components_strings.h"
|
| #import "third_party/google_toolbox_for_mac/src/AppKit/GTMUILocalizerAndLayoutTweaker.h"
|
| +#include "ui/base/cocoa/cocoa_base_utils.h"
|
| #import "ui/base/cocoa/controls/hyperlink_button_cell.h"
|
| #import "ui/base/cocoa/flipped_view.h"
|
| #import "ui/base/cocoa/hover_image_button.h"
|
| @@ -117,7 +118,7 @@ NSPoint AnchorPointForWindow(NSWindow* parent) {
|
| LocationBarViewMac* location_bar = [controller locationBarBridge];
|
| if (location_bar) {
|
| NSPoint bubble_point = location_bar->GetPageInfoBubblePoint();
|
| - origin = [parent convertBaseToScreen:bubble_point];
|
| + origin = ui::ConvertPointFromWindowToScreen(parent, bubble_point);
|
| }
|
| }
|
| return origin;
|
|
|