#include "content/public/browser/background_fetch_response.h"
namespace content {
BackgroundFetchResponse::BackgroundFetchResponse(
const std::vector<GURL>& url_chain,
const scoped_refptr<const net::HttpResponseHeaders>& headers)
: … { … }
BackgroundFetchResponse::~BackgroundFetchResponse() = default;
BackgroundFetchResult::BackgroundFetchResult(
std::unique_ptr<BackgroundFetchResponse> response,
base::Time response_time,
FailureReason failure_reason)
: … { … }
BackgroundFetchResult::BackgroundFetchResult(
std::unique_ptr<BackgroundFetchResponse> response,
base::Time response_time,
const base::FilePath& path,
std::optional<storage::BlobDataHandle> blob_handle,
uint64_t file_size)
: … { … }
BackgroundFetchResult::~BackgroundFetchResult() = default;
}