#include "components/download/database/in_progress/download_entry.h"
namespace download {
DownloadEntry::DownloadEntry() = default;
DownloadEntry::DownloadEntry(const DownloadEntry& other) = default;
DownloadEntry::DownloadEntry(
const std::string& guid,
const std::string& request_origin,
DownloadSource download_source,
bool fetch_error_body,
const DownloadUrlParameters::RequestHeadersType& request_headers,
int64_t ukm_download_id)
: … { … }
DownloadEntry::~DownloadEntry() = default;
bool DownloadEntry::operator==(const DownloadEntry& other) const { … }
bool DownloadEntry::operator!=(const DownloadEntry& other) const { … }
}