#ifndef REMOTING_TEST_TEST_TOKEN_STORAGE_H_
#define REMOTING_TEST_TEST_TOKEN_STORAGE_H_
#include <memory>
#include <string>
#include "remoting/test/test_device_id_provider.h"
namespace base {
class FilePath;
}
namespace remoting {
namespace test {
class TestTokenStorage : public TestDeviceIdProvider::TokenStorage {
public:
TestTokenStorage() = default;
~TestTokenStorage() override = default;
virtual std::string FetchRefreshToken() = 0;
virtual bool StoreRefreshToken(const std::string& refresh_token) = 0;
virtual std::string FetchUserEmail() = 0;
virtual bool StoreUserEmail(const std::string& user_email) = 0;
virtual std::string FetchAccessToken() = 0;
virtual bool StoreAccessToken(const std::string& access_token) = 0;
virtual std::string FetchScopes() = 0;
virtual bool StoreScopes(const std::string& scopes) = 0;
static std::unique_ptr<TestTokenStorage> OnDisk(
const std::string& user_name,
const base::FilePath& tokens_file_path);
};
}
}
#endif