#include "chrome/browser/ui/views/autofill/payments/manage_saved_iban_bubble_view.h"
#include "chrome/browser/ui/browser_dialogs.h"
#include "chrome/browser/ui/views/autofill/autofill_location_bar_bubble.h"
#include "chrome/browser/ui/views/autofill/payments/dialog_view_ids.h"
#include "chrome/browser/ui/views/autofill/payments/payments_view_util.h"
#include "chrome/browser/ui/views/chrome_layout_provider.h"
#include "chrome/grit/generated_resources.h"
#include "components/autofill/core/browser/data_model/iban.h"
#include "components/strings/grit/components_strings.h"
#include "ui/base/l10n/l10n_util.h"
#include "ui/base/mojom/dialog_button.mojom.h"
#include "ui/views/controls/button/md_text_button.h"
#include "ui/views/layout/box_layout.h"
#include "ui/views/layout/box_layout_view.h"
#include "ui/views/style/typography.h"
#include "ui/views/style/typography_provider.h"
#include "ui/views/view_class_properties.h"
namespace autofill {
ManageSavedIbanBubbleView::ManageSavedIbanBubbleView(
views::View* anchor_view,
content::WebContents* web_contents,
IbanBubbleController* controller)
: … { … }
void ManageSavedIbanBubbleView::Show(DisplayReason reason) { … }
void ManageSavedIbanBubbleView::Hide() { … }
std::u16string ManageSavedIbanBubbleView::GetWindowTitle() const { … }
void ManageSavedIbanBubbleView::WindowClosing() { … }
ManageSavedIbanBubbleView::~ManageSavedIbanBubbleView() = default;
void ManageSavedIbanBubbleView::AssignIdsToDialogButtons() { … }
void ManageSavedIbanBubbleView::Init() { … }
}