#include "chrome/browser/notifications/scheduler/internal/noop_notification_schedule_service.h"
#include "chrome/browser/notifications/scheduler/public/notification_params.h"
namespace notifications {
NoopNotificationScheduleService::NoopNotificationScheduleService() = default;
NoopNotificationScheduleService::~NoopNotificationScheduleService() = default;
void NoopNotificationScheduleService::Schedule(
std::unique_ptr<NotificationParams> notification_params) { … }
void NoopNotificationScheduleService::DeleteNotifications(
SchedulerClientType type) { … }
void NoopNotificationScheduleService::GetClientOverview(
SchedulerClientType,
ClientOverview::ClientOverviewCallback callback) { … }
NotificationBackgroundTaskScheduler::Handler*
NoopNotificationScheduleService::GetBackgroundTaskSchedulerHandler() { … }
UserActionHandler* NoopNotificationScheduleService::GetUserActionHandler() { … }
void NoopNotificationScheduleService::OnStartTask(
TaskFinishedCallback callback) { … }
void NoopNotificationScheduleService::OnStopTask() { … }
void NoopNotificationScheduleService::OnUserAction(
const UserActionData& action_data) { … }
}