// 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 "components/download/database/in_progress/in_progress_info.h" namespace download { InProgressInfo::InProgressInfo() = default; InProgressInfo::InProgressInfo(const InProgressInfo& other) = default; InProgressInfo::~InProgressInfo() = default; bool InProgressInfo::operator==(const InProgressInfo& other) const { … } } // namespace download