blob: 84f6130e9dd4b9f2a8e3f79b54e036ff54e6c2a9 [file] [log] [blame]
// Copyright 2018 The Chromium Authors. All rights reserved.
// 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 <string>
#include "base/optional.h"
#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();
bool operator==(const DownloadDBEntry& other) const;
bool operator!=(const DownloadDBEntry& other) const;
// Gets a unique ID for this entry.
std::string GetGuid() const;
// Information about a regular download.
base::Optional<DownloadInfo> download_info;
};
} // namespace download
#endif // COMPONENTS_DOWNLOAD_DATABASE_DOWNLOAD_DB_ENTRY_H_