chromium/remoting/base/session_authz_service_client_factory.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 REMOTING_BASE_SESSION_AUTHZ_SERVICE_CLIENT_FACTORY_H_
#define REMOTING_BASE_SESSION_AUTHZ_SERVICE_CLIENT_FACTORY_H_

#include <memory>

#include "base/memory/ref_counted.h"
#include "remoting/base/session_authz_service_client.h"

namespace remoting {

// Interface for creating the SessionAuthz client.
class SessionAuthzServiceClientFactory
    : public base::RefCountedThreadSafe<SessionAuthzServiceClientFactory> {};

}  // namespace remoting

#endif  // REMOTING_BASE_SESSION_AUTHZ_SERVICE_CLIENT_FACTORY_H_