| Index: chrome/browser/ui/views/frame/browser_view.cc
|
| diff --git a/chrome/browser/ui/views/frame/browser_view.cc b/chrome/browser/ui/views/frame/browser_view.cc
|
| index d31ac99ae903b9296a4609cd19f2951544232288..8d12c89cfd69a65d71f83fafeb61d2e7516f7389 100644
|
| --- a/chrome/browser/ui/views/frame/browser_view.cc
|
| +++ b/chrome/browser/ui/views/frame/browser_view.cc
|
| @@ -30,6 +30,7 @@
|
| #include "chrome/browser/extensions/tab_helper.h"
|
| #include "chrome/browser/infobars/infobar_service.h"
|
| #include "chrome/browser/native_window_notification_source.h"
|
| +#include "chrome/browser/payments/payment_request_impl.h"
|
| #include "chrome/browser/permissions/permission_request_manager.h"
|
| #include "chrome/browser/profiles/avatar_menu.h"
|
| #include "chrome/browser/profiles/profile.h"
|
| @@ -83,6 +84,7 @@
|
| #include "chrome/browser/ui/views/location_bar/zoom_bubble_view.h"
|
| #include "chrome/browser/ui/views/new_back_shortcut_bubble.h"
|
| #include "chrome/browser/ui/views/omnibox/omnibox_view_views.h"
|
| +#include "chrome/browser/ui/views/payments/payment_request_dialog.h"
|
| #include "chrome/browser/ui/views/profiles/profile_indicator_icon.h"
|
| #include "chrome/browser/ui/views/session_crashed_bubble_view.h"
|
| #include "chrome/browser/ui/views/status_bubble_views.h"
|
| @@ -109,6 +111,7 @@
|
| #include "components/app_modal/app_modal_dialog.h"
|
| #include "components/app_modal/app_modal_dialog_queue.h"
|
| #include "components/app_modal/native_app_modal_dialog.h"
|
| +#include "components/constrained_window/constrained_window_views.h"
|
| #include "components/omnibox/browser/omnibox_popup_model.h"
|
| #include "components/omnibox/browser/omnibox_popup_view.h"
|
| #include "components/omnibox/browser/omnibox_view.h"
|
| @@ -2488,6 +2491,11 @@ bool BrowserView::IsVisibleOnAllWorkspaces() const {
|
| return frame_->IsVisibleOnAllWorkspaces();
|
| }
|
|
|
| +void BrowserView::ShowWebPaymentsDialog(payments::PaymentRequestImpl* impl) {
|
| + constrained_window::ShowWebModalDialogViews(
|
| + new payments::PaymentRequestDialog(impl), impl->web_contents());
|
| +}
|
| +
|
| bool BrowserView::DoCutCopyPasteForWebContents(
|
| WebContents* contents,
|
| void (WebContents::*method)()) {
|
|
|