chromium/components/offline_pages/core/offline_page_item.cc

// Copyright 2015 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/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 {}

}  // namespace offline_pages