chromium/remoting/base/corp_session_authz_service_client_factory.cc

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

#include "remoting/base/corp_session_authz_service_client_factory.h"

#include <memory>
#include <vector>

#include "base/check.h"
#include "base/task/sequenced_task_runner.h"
#include "remoting/base/corp_auth_util.h"
#include "remoting/base/corp_session_authz_service_client.h"
#include "remoting/base/oauth_token_getter_impl.h"
#include "remoting/base/oauth_token_getter_proxy.h"

namespace remoting {

CorpSessionAuthzServiceClientFactory::CorpSessionAuthzServiceClientFactory(
    scoped_refptr<network::SharedURLLoaderFactory> url_loader_factory,
    const std::string& service_account_email,
    const std::string& refresh_token) {}

CorpSessionAuthzServiceClientFactory::~CorpSessionAuthzServiceClientFactory() =
    default;

std::unique_ptr<SessionAuthzServiceClient>
CorpSessionAuthzServiceClientFactory::Create() {}

}  // namespace remoting