blob: 9a051625c5381dd8fc33961bb5950b23b9c22e39 [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.
#ifndef COMPONENTS_DOWNLOAD_DATABASE_DOWNLOAD_DB_ENTRY_H_
#define COMPONENTS_DOWNLOAD_DATABASE_DOWNLOAD_DB_ENTRY_H_
#include <optional>
#include <string>
#include "components/download/database/download_info.h"
#include "components/download/database/download_namespace.h"
namespace download {
// Representing one entry in the DownloadDB.
struct DownloadDBEntry {
public:
DownloadDBEntry();
DownloadDBEntry(const DownloadDBEntry& other);
~DownloadDBEntry();
friend bool operator==(const DownloadDBEntry&,
const DownloadDBEntry&) = default;
// Gets a unique ID for this entry.
std::string GetGuid() const;
// Information about a regular download.
std::optional<DownloadInfo> download_info;
};
} // namespace download
#endif // COMPONENTS_DOWNLOAD_DATABASE_DOWNLOAD_DB_ENTRY_H_