chromium/chrome/browser/ui/views/autofill/payments/save_iban_bubble_view.cc

// Copyright 2023 The Chromium Authors
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.

#include "chrome/browser/ui/views/autofill/payments/save_iban_bubble_view.h"

#include "chrome/browser/ui/views/accessibility/theme_tracking_non_accessible_image_view.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/browser/ui/views/chrome_typography.h"
#include "chrome/grit/generated_resources.h"
#include "chrome/grit/theme_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/base/resource/resource_bundle.h"
#include "ui/gfx/color_palette.h"
#include "ui/gfx/vector_icon_utils.h"
#include "ui/views/accessibility/view_accessibility.h"
#include "ui/views/controls/button/label_button.h"
#include "ui/views/layout/box_layout.h"
#include "ui/views/layout/flex_layout_types.h"
#include "ui/views/style/typography.h"
#include "ui/views/style/typography_provider.h"
#include "ui/views/view_class_properties.h"

namespace autofill {

namespace {

const int kMaxNicknameChars =;

}  // namespace

SaveIbanBubbleView::SaveIbanBubbleView(views::View* anchor_view,
                                       content::WebContents* web_contents,
                                       IbanBubbleController* controller)
    :{}

void SaveIbanBubbleView::Show(DisplayReason reason) {}

void SaveIbanBubbleView::Hide() {}

void SaveIbanBubbleView::AddedToWidget() {}

std::u16string SaveIbanBubbleView::GetWindowTitle() const {}

void SaveIbanBubbleView::WindowClosing() {}

void SaveIbanBubbleView::ContentsChanged(views::Textfield* sender,
                                         const std::u16string& new_contents) {}

SaveIbanBubbleView::~SaveIbanBubbleView() = default;

void SaveIbanBubbleView::CreateMainContentView() {}

void SaveIbanBubbleView::AssignIdsToDialogButtonsForTesting() {}

void SaveIbanBubbleView::OnDialogAccepted() {}

void SaveIbanBubbleView::LinkClicked(const GURL& url) {}

void SaveIbanBubbleView::Init() {}

std::unique_ptr<views::View> SaveIbanBubbleView::CreateLegalMessageView() {}

void SaveIbanBubbleView::UpdateNicknameLengthLabel() {}

}  // namespace autofill