#include "components/download/internal/background_service/entry.h"
#include "base/trace_event/memory_usage_estimator.h"
namespace download {
namespace {
bool AreHeadersEqual(const net::HttpResponseHeaders* h1,
const net::HttpResponseHeaders* h2) { … }
}
Entry::Entry()
: … { … }
Entry::Entry(const Entry& other) = default;
Entry::Entry(const DownloadParams& params)
: … { … }
Entry::~Entry() = default;
bool Entry::operator==(const Entry& other) const { … }
size_t Entry::EstimateMemoryUsage() const { … }
}