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

// Copyright 2020 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_ACCOUNT_STORAGE_AUTH_HELPER_H_
#define CHROME_BROWSER_UI_PASSWORDS_ACCOUNT_STORAGE_AUTH_HELPER_H_

#include "base/functional/callback.h"
#include "base/memory/raw_ptr.h"
#include "base/memory/weak_ptr.h"
#include "chrome/browser/ui/signin/signin_view_controller.h"
#include "components/password_manager/core/browser/password_manager_client.h"
#include "components/signin/public/base/signin_buildflags.h"

namespace password_manager {
class PasswordFeatureManager;
}

namespace signin {
enum class ReauthResult;
class IdentityManager;
}  // namespace signin

namespace signin_metrics {
enum class ReauthAccessPoint;
}

class SigninViewController;
class Profile;

// Responsible for triggering authentication flows related to the passwords
// account storage. Used only by desktop.
class AccountStorageAuthHelper {};

#endif  // CHROME_BROWSER_UI_PASSWORDS_ACCOUNT_STORAGE_AUTH_HELPER_H_