| Index: chrome/browser/ui/views/confirm_bubble_views.cc
|
| diff --git a/chrome/browser/ui/views/confirm_bubble_views.cc b/chrome/browser/ui/views/confirm_bubble_views.cc
|
| index 2dfd131987f85557381e8be2595340c78579b201..d019b39125e421907d75949338d5dabb133a0a75 100644
|
| --- a/chrome/browser/ui/views/confirm_bubble_views.cc
|
| +++ b/chrome/browser/ui/views/confirm_bubble_views.cc
|
| @@ -9,6 +9,7 @@
|
| #include "chrome/browser/ui/confirm_bubble.h"
|
| #include "chrome/browser/ui/confirm_bubble_model.h"
|
| #include "components/constrained_window/constrained_window_views.h"
|
| +#include "ui/base/ui_features.h"
|
| #include "ui/views/controls/label.h"
|
| #include "ui/views/controls/link.h"
|
| #include "ui/views/layout/grid_layout.h"
|
| @@ -101,6 +102,7 @@ void ConfirmBubbleViews::LinkClicked(views::Link* source, int event_flags) {
|
|
|
| namespace chrome {
|
|
|
| +#if !defined(OS_MACOSX) || BUILDFLAG(MAC_VIEWS_BROWSER)
|
| void ShowConfirmBubble(gfx::NativeWindow window,
|
| gfx::NativeView anchor_view,
|
| const gfx::Point& origin,
|
| @@ -109,5 +111,6 @@ void ShowConfirmBubble(gfx::NativeWindow window,
|
| new ConfirmBubbleViews(std::move(model)), window)
|
| ->Show();
|
| }
|
| +#endif // !OS_MACOSX || MAC_VIEWS_BROWSER
|
|
|
| } // namespace chrome
|
|
|