chromium/content/public/browser/background_fetch_response.cc

// Copyright 2017 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_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;

}  // namespace content