blob: bfa46e79efaa01aa776ba44bea6973269200d110 [file] [log] [blame]
// Copyright 2018 The Chromium Authors. All rights reserved.
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
#ifndef COMPONENTS_SYNC_ENGINE_SYNC_CREDENTIALS_H_
#define COMPONENTS_SYNC_ENGINE_SYNC_CREDENTIALS_H_
#include <string>
#include "google_apis/gaia/core_account_id.h"
namespace syncer {
// Contains everything needed to talk to and identify a user account.
struct SyncCredentials {
SyncCredentials();
SyncCredentials(const SyncCredentials& other);
~SyncCredentials();
// Account_id of signed in account.
CoreAccountId account_id;
// The email associated with this account.
std::string email;
// The OAuth2 access token.
std::string access_token;
};
} // namespace syncer
#endif // COMPONENTS_SYNC_ENGINE_SYNC_CREDENTIALS_H_