chromium/remoting/test/fake_test_token_storage.h

// Copyright 2015 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_FAKE_TEST_TOKEN_STORAGE_H_
#define REMOTING_TEST_FAKE_TEST_TOKEN_STORAGE_H_

#include <string>

#include "remoting/test/test_token_storage.h"

namespace remoting {
namespace test {

// Stubs out the file API and returns fake data so we can remove
// file system dependencies when testing the TestDriverEnvironment.
class FakeTestTokenStorage : public TestTokenStorage {};

}  // namespace test
}  // namespace remoting

#endif  // REMOTING_TEST_FAKE_TEST_TOKEN_STORAGE_H_