#ifndef COMPONENTS_VALUE_STORE_LEVELDB_VALUE_STORE_H_
#define COMPONENTS_VALUE_STORE_LEVELDB_VALUE_STORE_H_
#include <stddef.h>
#include <memory>
#include <string>
#include <vector>
#include "base/compiler_specific.h"
#include "base/files/file_path.h"
#include "base/trace_event/memory_dump_provider.h"
#include "components/value_store/lazy_leveldb.h"
#include "components/value_store/value_store.h"
#include "third_party/leveldatabase/src/include/leveldb/db.h"
namespace value_store {
class LeveldbValueStore : public ValueStore,
public LazyLevelDb,
public base::trace_event::MemoryDumpProvider { … };
}
#endif