// Copyright 2020 The Chromium Authors // Use of this source code is governed by a BSD-style license that can be // found in the LICENSE file. #include "content/browser/indexed_db/indexed_db_compaction_task.h" #include "base/trace_event/base_tracing.h" #include "third_party/leveldatabase/src/include/leveldb/db.h" namespace content { IndexedDBCompactionTask::IndexedDBCompactionTask(leveldb::DB* database) : … { … } IndexedDBCompactionTask::~IndexedDBCompactionTask() = default; bool IndexedDBCompactionTask::RequiresMetadata() const { … } bool IndexedDBCompactionTask::RunRound() { … } } // namespace content