blob: e94e6f7625770b04a909116dc15cc127f97b4f59 [file] [log] [blame]
// 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/download_db_entry.h"
namespace download {
DownloadDBEntry::DownloadDBEntry() = default;
DownloadDBEntry::DownloadDBEntry(const DownloadDBEntry& other) = default;
DownloadDBEntry::~DownloadDBEntry() = default;
std::string DownloadDBEntry::GetGuid() const {
if (!download_info)
return std::string();
return download_info->guid;
}
} // namespace download