1
    2
    3
    4
    5
    6
    7
    8
    9
   10
   11
   12
   13
   14
   15
   16
   17
   18
   19
   20
   21

content / public / browser / notification_database_data.cc [blame]

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

#include "base/time/time.h"
#include "content/public/browser/notification_database_data.h"

namespace content {

NotificationDatabaseData::NotificationDatabaseData()
    : creation_time_millis(base::Time::Now()) {}

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

NotificationDatabaseData& NotificationDatabaseData::operator=(
    const NotificationDatabaseData& other) = default;

NotificationDatabaseData::~NotificationDatabaseData() = default;

}  // namespace content