blob: 0525062876be276d8b2b325c9f2e5ada013a4768 [file] [log] [blame]
// 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& token)
: access_token_(token), user_email_("") {}
OAuthTokenInfo::OAuthTokenInfo(const std::string& token,
const std::string& email)
: access_token_(token), user_email_(email) {}
} // namespace remoting