#include "components/offline_pages/core/offline_page_item.h"
namespace offline_pages {
OfflinePageItem::OfflinePageItem() = default;
OfflinePageItem::OfflinePageItem(const GURL& url,
int64_t offline_id,
const ClientId& client_id,
const base::FilePath& file_path,
int64_t file_size)
: … { … }
OfflinePageItem::OfflinePageItem(const GURL& url,
int64_t offline_id,
const ClientId& client_id,
const base::FilePath& file_path,
int64_t file_size,
const base::Time& creation_time)
: … { … }
OfflinePageItem::OfflinePageItem(const OfflinePageItem& other) = default;
OfflinePageItem::OfflinePageItem(OfflinePageItem&& other) = default;
OfflinePageItem::~OfflinePageItem() = default;
OfflinePageItem& OfflinePageItem::operator=(const OfflinePageItem&) = default;
OfflinePageItem& OfflinePageItem::operator=(OfflinePageItem&&) = default;
bool OfflinePageItem::operator==(const OfflinePageItem& other) const { … }
bool OfflinePageItem::operator<(const OfflinePageItem& other) const { … }
}