chromium/components/history/core/browser/download_row.cc

// Copyright 2011 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_row.h"

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

namespace history {

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

DownloadRow& DownloadRow::operator=(const DownloadRow& other) = default;

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

}  // namespace history