#ifndef CHROME_BROWSER_UI_AUTOFILL_PAYMENTS_WEBAUTHN_DIALOG_CONTROLLER_IMPL_H_
#define CHROME_BROWSER_UI_AUTOFILL_PAYMENTS_WEBAUTHN_DIALOG_CONTROLLER_IMPL_H_
#include "base/memory/raw_ptr.h"
#include "chrome/browser/ui/autofill/payments/webauthn_dialog_controller.h"
#include "components/autofill/core/browser/payments/payments_autofill_client.h"
#include "content/public/browser/page_user_data.h"
namespace autofill {
class WebauthnDialogModel;
class WebauthnDialog;
enum class WebauthnDialogState;
class WebauthnDialogControllerImpl
: public WebauthnDialogController,
public content::PageUserData<WebauthnDialogControllerImpl> { … };
}
#endif