#ifndef REMOTING_BASE_CORP_AUTH_UTIL_H_
#define REMOTING_BASE_CORP_AUTH_UTIL_H_
#include <memory>
#include <string>
#include "base/memory/scoped_refptr.h"
#include "remoting/base/oauth_token_getter_impl.h"
#include "services/network/public/cpp/shared_url_loader_factory.h"
namespace remoting {
std::unique_ptr<OAuthTokenGetterImpl> CreateCorpTokenGetter(
scoped_refptr<network::SharedURLLoaderFactory> url_loader_factory,
const std::string& service_account_email,
const std::string& refresh_token);
}
#endif