chromium/chrome/browser/notifications/scheduler/internal/notification_entry.cc

// Copyright 2019 The Chromium Authors
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.

#include "chrome/browser/notifications/scheduler/internal/notification_entry.h"

#include <utility>

namespace notifications {

NotificationEntry::NotificationEntry()
    :{}

NotificationEntry::NotificationEntry(SchedulerClientType type,
                                     const std::string& guid)
    :{}

NotificationEntry::NotificationEntry(const NotificationEntry& other) = default;

bool NotificationEntry::operator==(const NotificationEntry& other) const {}

bool NotificationEntry::operator!=(const NotificationEntry& other) const {}

NotificationEntry::~NotificationEntry() = default;

}  // namespace notifications