// Copyright 2019 The Chromium Authors // Use of this source code is governed by a BSD-style license that can be // found in the LICENSE file. #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 { // Used to store and retrieve tokens for test. This interface is provided to // allow for stubbing out the storage mechanism for testing. class TestTokenStorage : public TestDeviceIdProvider::TokenStorage { … }; } // namespace test } // namespace remoting #endif // REMOTING_TEST_TEST_TOKEN_STORAGE_H_