chromium/net/disk_cache/simple/post_operation_waiter.cc

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

#include "net/disk_cache/simple/post_operation_waiter.h"

#include "base/check_op.h"
#include "base/functional/bind.h"
#include "base/functional/callback.h"
#include "net/disk_cache/simple/simple_histogram_macros.h"

namespace disk_cache {

SimplePostOperationWaiterTable::SimplePostOperationWaiterTable() = default;
SimplePostOperationWaiterTable::~SimplePostOperationWaiterTable() = default;

void SimplePostOperationWaiterTable::OnOperationStart(uint64_t entry_hash) {}

void SimplePostOperationWaiterTable::OnOperationComplete(uint64_t entry_hash) {}

std::vector<base::OnceClosure>* SimplePostOperationWaiterTable::Find(
    uint64_t entry_hash) {}

}  // namespace disk_cache