blob: e1d5fef72c882fabbb41b3a4f51c3484d0095d48 [file] [log] [blame]
// Copyright 2015 The Chromium Authors
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
#ifndef IOS_NET_HTTP_CACHE_HELPER_H_
#define IOS_NET_HTTP_CACHE_HELPER_H_
#include "base/functional/callback_forward.h"
#include "base/memory/scoped_refptr.h"
#include "net/base/completion_once_callback.h"
namespace base {
class TaskRunner;
class Time;
} // namespace base
namespace net {
class URLRequestContextGetter;
// Clears the HTTP cache and calls |closure| back.
void ClearHttpCache(const scoped_refptr<net::URLRequestContextGetter>& getter,
const scoped_refptr<base::TaskRunner>& network_task_runner,
const base::Time& delete_begin,
const base::Time& delete_end,
net::CompletionOnceCallback callback);
} // namespace net
#endif // IOS_NET_HTTP_CACHE_HELPER_H_