chromium/components/value_store/value_store_factory_impl.h

// Copyright 2016 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_VALUE_STORE_FACTORY_IMPL_H_
#define COMPONENTS_VALUE_STORE_VALUE_STORE_FACTORY_IMPL_H_

#include <memory>
#include <string>

#include "base/files/file_path.h"
#include "components/value_store/value_store.h"
#include "components/value_store/value_store_factory.h"

namespace value_store {

// A factory to create ValueStore instances.
class ValueStoreFactoryImpl : public ValueStoreFactory {};

}  // namespace value_store

#endif  // COMPONENTS_VALUE_STORE_VALUE_STORE_FACTORY_IMPL_H_