chromium/chrome/browser/enterprise/platform_auth/platform_auth_provider_manager.h

// Copyright 2022 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_ENTERPRISE_PLATFORM_AUTH_PLATFORM_AUTH_PROVIDER_MANAGER_H_
#define CHROME_BROWSER_ENTERPRISE_PLATFORM_AUTH_PLATFORM_AUTH_PROVIDER_MANAGER_H_

#include <stdint.h>

#include <array>
#include <memory>
#include <optional>
#include <string>
#include <vector>

#include "base/containers/flat_set.h"
#include "base/functional/callback.h"
#include "base/gtest_prod_util.h"
#include "base/memory/weak_ptr.h"
#include "base/sequence_checker.h"
#include "net/http/http_request_headers.h"
#include "url/origin.h"

class GURL;

namespace net {
class HttpRequestHeaders;
}  // namespace net

namespace enterprise_auth {

class PlatformAuthProvider;

// Provides a means by which a browser can enable and use platform-based
// authentication (for example Cloud AP SSO on Windows and Enterprise Extensible
// SSO on MacOS).
class PlatformAuthProviderManager {};

}  // namespace enterprise_auth

#endif  // CHROME_BROWSER_ENTERPRISE_PLATFORM_AUTH_PLATFORM_AUTH_PROVIDER_MANAGER_H_