chromium/services/network/conditional_cache_deletion_helper.h

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

#ifndef SERVICES_NETWORK_CONDITIONAL_CACHE_DELETION_HELPER_H_
#define SERVICES_NETWORK_CONDITIONAL_CACHE_DELETION_HELPER_H_

#include <memory>

#include "base/functional/callback_forward.h"
#include "base/memory/raw_ptr.h"
#include "base/memory/weak_ptr.h"
#include "base/task/sequenced_task_runner_helpers.h"
#include "net/base/net_errors.h"
#include "net/disk_cache/disk_cache.h"
#include "url/gurl.h"

namespace disk_cache {
class Entry;
}

namespace network {

// Helper to remove HTTP cache data.
class ConditionalCacheDeletionHelper {};

}  // namespace network

#endif  // SERVICES_NETWORK_CONDITIONAL_CACHE_DELETION_HELPER_H_