chromium/components/download/public/background_service/download_params.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 "components/download/public/background_service/download_params.h"

#include "components/download/public/background_service/clients.h"

namespace download {

SchedulingParams::SchedulingParams()
    :{}

bool SchedulingParams::operator==(const SchedulingParams& rhs) const {}

RequestParams::RequestParams()
    :{}

RequestParams::RequestParams(const RequestParams& other) = default;
RequestParams::~RequestParams() = default;

DownloadParams::DownloadParams() :{}
DownloadParams::~DownloadParams() = default;

DownloadParams::DownloadParams(DownloadParams&& other) = default;
DownloadParams& DownloadParams::operator=(DownloadParams&& other) = default;

}  // namespace download