chromium/components/safe_browsing/core/browser/password_protection/password_reuse_detection_manager_client.h

// 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.

#ifndef COMPONENTS_SAFE_BROWSING_CORE_BROWSER_PASSWORD_PROTECTION_PASSWORD_REUSE_DETECTION_MANAGER_CLIENT_H_
#define COMPONENTS_SAFE_BROWSING_CORE_BROWSER_PASSWORD_PROTECTION_PASSWORD_REUSE_DETECTION_MANAGER_CLIENT_H_

#include <string>
#include <vector>

#include "build/build_config.h"

namespace autofill {
class LogManager;
}  // namespace autofill

namespace password_manager {
class PasswordReuseManager;
namespace metrics_util {
enum class PasswordType;
}
struct MatchingReusedCredential;
}  // namespace password_manager

namespace safe_browsing {

// An abstraction of operations that depend on the embedders (e.g. Chrome)
// environment. It manages password reuse detection.
class PasswordReuseDetectionManagerClient {};

}  // namespace safe_browsing

#endif  // COMPONENTS_SAFE_BROWSING_CORE_BROWSER_PASSWORD_PROTECTION_PASSWORD_REUSE_DETECTION_MANAGER_CLIENT_H_