#include "content/public/browser/background_fetch_description.h"
namespace content {
BackgroundFetchDescription::BackgroundFetchDescription(
const std::string& job_unique_id,
const url::Origin& origin,
const std::string& title,
const SkBitmap& icon,
int completed_requests,
int total_requests,
uint64_t downloaded_bytes,
uint64_t uploaded_bytes,
uint64_t download_total_bytes,
uint64_t upload_total_bytes,
std::vector<std::string> outstanding_guids,
bool start_paused,
std::optional<net::IsolationInfo> isolation_info)
: … { … }
BackgroundFetchDescription::~BackgroundFetchDescription() = default;
}