chromium/chrome/browser/ui/passwords/password_cross_domain_confirmation_popup_view.h

// 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_PASSWORDS_PASSWORD_CROSS_DOMAIN_CONFIRMATION_POPUP_VIEW_H_
#define CHROME_BROWSER_UI_PASSWORDS_PASSWORD_CROSS_DOMAIN_CONFIRMATION_POPUP_VIEW_H_

#include "base/functional/callback_forward.h"
#include "base/memory/weak_ptr.h"

namespace autofill {
class AutofillPopupViewDelegate;
}

class GURL;

// This interface is used by `PasswordCrossDomainConfirmationPopupController`
// to manage the cross domain password usage confirmation popup. The popup
// view contains a message warning the user that they are about to expose their
// credentials to potentially unrelated web site, giving two options: either
// confirm it or cancel.
class PasswordCrossDomainConfirmationPopupView {};

#endif  // CHROME_BROWSER_UI_PASSWORDS_PASSWORD_CROSS_DOMAIN_CONFIRMATION_POPUP_VIEW_H_