#include "remoting/base/oauth_token_getter_impl.h"
#include <utility>
namespace remoting {
OAuthTokenGetter::OAuthAuthorizationCredentials::OAuthAuthorizationCredentials(
const std::string& login,
const std::string& refresh_token,
bool is_service_account,
std::vector<std::string> scopes)
: … { … }
OAuthTokenGetter::OAuthAuthorizationCredentials::
~OAuthAuthorizationCredentials() = default;
OAuthTokenGetter::OAuthIntermediateCredentials::OAuthIntermediateCredentials(
const std::string& authorization_code,
bool is_service_account,
std::vector<std::string> scopes)
: … { … }
OAuthTokenGetter::OAuthIntermediateCredentials::
~OAuthIntermediateCredentials() = default;
}