blob: 0b16c3d421a719dc4ebf940e5851aa22baa50a35 [file] [log] [blame]
// 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(SchedulerClientType::kUnknown, std::string()) {}
NotificationEntry::NotificationEntry(SchedulerClientType type,
const std::string& guid)
: type(type), guid(guid), create_time(base::Time::Now()) {}
NotificationEntry::NotificationEntry(const NotificationEntry& other) = default;
NotificationEntry::~NotificationEntry() = default;
} // namespace notifications