910e62b5创建于 1月15日历史提交
// 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/oauth_token_info.h"

namespace remoting {

OAuthTokenInfo::OAuthTokenInfo(const std::string& access_token)
    : access_token_(access_token), user_email_("") {}

OAuthTokenInfo::OAuthTokenInfo(const std::string& access_token,
                               const std::string& user_email)
    : access_token_(access_token), user_email_(user_email) {}

}  // namespace remoting