#include "storage/browser/test/sandbox_database_test_helper.h"
#include <stdint.h>
#include <functional>
#include <limits>
#include <vector>
#include "base/containers/span.h"
#include "base/files/file.h"
#include "base/files/file_enumerator.h"
#include "base/files/file_util.h"
#include "base/ranges/algorithm.h"
#include "storage/common/file_system/file_system_util.h"
#include "testing/gtest/include/gtest/gtest.h"
#include "third_party/leveldatabase/leveldb_chrome.h"
namespace storage {
void CorruptDatabase(const base::FilePath& db_path,
leveldb::FileType type,
ptrdiff_t offset,
size_t size) { … }
void DeleteDatabaseFile(const base::FilePath& db_path,
leveldb::FileType type) { … }
}