chromium/chrome/browser/extensions/api/web_authentication_proxy/web_authentication_proxy_api.h

// Copyright 2021 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_EXTENSIONS_API_WEB_AUTHENTICATION_PROXY_WEB_AUTHENTICATION_PROXY_API_H_
#define CHROME_BROWSER_EXTENSIONS_API_WEB_AUTHENTICATION_PROXY_WEB_AUTHENTICATION_PROXY_API_H_

#include "base/memory/raw_ptr.h"
#include "chrome/browser/extensions/api/web_authentication_proxy/remote_session_state_change.h"
#include "extensions/browser/browser_context_keyed_api_factory.h"
#include "extensions/browser/event_router.h"
#include "extensions/browser/event_router_factory.h"
#include "extensions/browser/extension_function.h"
#include "extensions/browser/extension_function_histogram_value.h"

namespace extensions {

class WebAuthenticationProxyAPI : public BrowserContextKeyedAPI,
                                  public EventRouter::Observer {};

template <>
struct BrowserContextFactoryDependencies<WebAuthenticationProxyAPI> {};

class WebAuthenticationProxyAttachFunction : public ExtensionFunction {};

class WebAuthenticationProxyDetachFunction : public ExtensionFunction {};

class WebAuthenticationProxyCompleteCreateRequestFunction
    : public ExtensionFunction {};

class WebAuthenticationProxyCompleteGetRequestFunction
    : public ExtensionFunction {};

class WebAuthenticationProxyCompleteIsUvpaaRequestFunction
    : public ExtensionFunction {};

}  // namespace extensions

#endif  // CHROME_BROWSER_EXTENSIONS_API_WEB_AUTHENTICATION_PROXY_WEB_AUTHENTICATION_PROXY_API_H_