#include "components/services/storage/indexed_db/transactional_leveldb/leveldb_write_batch.h"
#include "base/memory/ptr_util.h"
#include "third_party/leveldatabase/env_chromium.h"
#include "third_party/leveldatabase/src/include/leveldb/slice.h"
#include "third_party/leveldatabase/src/include/leveldb/write_batch.h"
namespace content {
std::unique_ptr<LevelDBWriteBatch> LevelDBWriteBatch::Create() { … }
LevelDBWriteBatch::LevelDBWriteBatch()
: … { … }
LevelDBWriteBatch::~LevelDBWriteBatch() { … }
void LevelDBWriteBatch::Put(std::string_view key, std::string_view value) { … }
void LevelDBWriteBatch::Remove(std::string_view key) { … }
void LevelDBWriteBatch::Clear() { … }
}