blob: ee04ea678c5fd3842742caab53705bb8a13ba83b [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/notification_background_task_scheduler_impl.h"
#include "base/notreached.h"
NotificationBackgroundTaskSchedulerImpl::
NotificationBackgroundTaskSchedulerImpl() = default;
NotificationBackgroundTaskSchedulerImpl::
~NotificationBackgroundTaskSchedulerImpl() = default;
void NotificationBackgroundTaskSchedulerImpl::Schedule(
base::TimeDelta window_start,
base::TimeDelta window_end) {
// TODO(xingliu): Implements this for non-Android platform.
NOTIMPLEMENTED();
}
void NotificationBackgroundTaskSchedulerImpl::Cancel() {
NOTIMPLEMENTED();
}