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

#ifndef CHROME_BROWSER_UI_VIEWS_WEBAUTHN_PASSKEY_SAVED_CONFIRMATION_VIEW_H_
#define CHROME_BROWSER_UI_VIEWS_WEBAUTHN_PASSKEY_SAVED_CONFIRMATION_VIEW_H_

#include <string>

#include "chrome/browser/ui/views/passwords/password_bubble_view_base.h"
#include "chrome/browser/ui/webauthn/passkey_saved_confirmation_controller.h"
#include "ui/base/metadata/metadata_header_macros.h"
#include "ui/base/models/image_model.h"
#include "ui/views/view.h"

// A view informing the user that their passkey was saved.
class PasskeySavedConfirmationView : public PasswordBubbleViewBase {
  METADATA_HEADER(PasskeySavedConfirmationView, PasswordBubbleViewBase)

 public:
  PasskeySavedConfirmationView(content::WebContents* web_contents,
                               views::BubbleAnchor anchor_view,
                               std::string passkey_rp_id);
  ~PasskeySavedConfirmationView() override;

 private:
  // PasswordBubbleViewBase:
  PasskeySavedConfirmationController* GetController() override;
  const PasskeySavedConfirmationController* GetController() const override;
  ui::ImageModel GetWindowIcon() override;

  // Notifies the `controller_` to open password manager and closes the bubble.
  void OnGooglePasswordManagerLinkClicked();

  PasskeySavedConfirmationController controller_;
};

#endif  // CHROME_BROWSER_UI_VIEWS_WEBAUTHN_PASSKEY_SAVED_CONFIRMATION_VIEW_H_
