#include "chrome/browser/notifications/scheduler/internal/background_task_coordinator.h"
#include <algorithm>
#include <optional>
#include <utility>
#include "base/command_line.h"
#include "base/memory/raw_ptr.h"
#include "base/time/clock.h"
#include "base/time/time.h"
#include "chrome/browser/notifications/scheduler/internal/impression_types.h"
#include "chrome/browser/notifications/scheduler/internal/notification_entry.h"
#include "chrome/browser/notifications/scheduler/internal/scheduler_config.h"
#include "chrome/browser/notifications/scheduler/internal/scheduler_utils.h"
#include "chrome/browser/notifications/scheduler/public/features.h"
#include "chrome/browser/notifications/scheduler/public/notification_background_task_scheduler.h"
namespace notifications {
namespace {
class BackgroundTaskCoordinatorHelper { … };
}
class BackgroundTaskCoordinatorImpl : public BackgroundTaskCoordinator { … };
std::unique_ptr<BackgroundTaskCoordinator> BackgroundTaskCoordinator::Create(
std::unique_ptr<NotificationBackgroundTaskScheduler> background_task,
const SchedulerConfig* config,
base::Clock* clock) { … }
BackgroundTaskCoordinator::~BackgroundTaskCoordinator() = default;
}