chromium/chrome/browser/ui/digital_credentials/digital_identity_safety_interstitial_controller.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_DIGITAL_CREDENTIALS_DIGITAL_IDENTITY_SAFETY_INTERSTITIAL_CONTROLLER_H_
#define CHROME_BROWSER_UI_DIGITAL_CREDENTIALS_DIGITAL_IDENTITY_SAFETY_INTERSTITIAL_CONTROLLER_H_

#include "content/public/browser/digital_identity_interstitial_type.h"
#include "content/public/browser/digital_identity_provider.h"

namespace content {
class WebContents;
enum class DigitalIdentityInterstitialType;
}  // namespace content

namespace url {
class Origin;
}

// Pure virtual class for showing modal dialog asking user whether they want to
// share their identity with website.
class DigitalIdentitySafetyInterstitialController {};

#endif  // CHROME_BROWSER_UI_DIGITAL_CREDENTIALS_DIGITAL_IDENTITY_SAFETY_INTERSTITIAL_CONTROLLER_H_