chromium/components/services/storage/indexed_db/transactional_leveldb/leveldb_write_batch.cc

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

#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() {}

}  // namespace content