chromium/content/public/browser/background_fetch_description.cc

// Copyright 2018 The Chromium Authors
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.

#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;

}  // namespace content