chromium/components/history/core/browser/download_slice_info.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/history/core/browser/download_slice_info.h"

#include "components/history/core/browser/download_constants.h"

namespace history {

DownloadSliceInfo::DownloadSliceInfo()
    :{}

DownloadSliceInfo::DownloadSliceInfo(DownloadId download_id,
                                     int64_t offset,
                                     int64_t received_bytes,
                                     bool finished)
    :{}

DownloadSliceInfo::DownloadSliceInfo(const DownloadSliceInfo& other) = default;

DownloadSliceInfo::~DownloadSliceInfo() = default;

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

}  // namespace history