chromium/components/value_store/testing_value_store.h

// Copyright 2014 The Chromium Authors
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.

#ifndef COMPONENTS_VALUE_STORE_TESTING_VALUE_STORE_H_
#define COMPONENTS_VALUE_STORE_TESTING_VALUE_STORE_H_

#include <stddef.h>

#include <string>
#include <vector>

#include "base/compiler_specific.h"
#include "components/value_store/value_store.h"

namespace value_store {

// ValueStore for testing, with an in-memory storage but the ability to
// optionally fail all operations.
class TestingValueStore : public ValueStore {};

}  // namespace value_store

#endif  // COMPONENTS_VALUE_STORE_TESTING_VALUE_STORE_H_