// 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_auth_util.h" #include "base/check.h" #include "remoting/base/oauth_token_getter_impl.h" namespace remoting { namespace { constexpr char kOAuthScope[] = …; } // namespace std::unique_ptr<OAuthTokenGetterImpl> CreateCorpTokenGetter( scoped_refptr<network::SharedURLLoaderFactory> url_loader_factory, const std::string& service_account_email, const std::string& refresh_token) { … } } // namespace remoting