#include "components/component_updater/timer_update_scheduler.h"
#include "base/functional/bind.h"
#include "base/functional/callback_helpers.h"
namespace component_updater {
TimerUpdateScheduler::TimerUpdateScheduler() = default;
TimerUpdateScheduler::~TimerUpdateScheduler() = default;
void TimerUpdateScheduler::Schedule(const base::TimeDelta& initial_delay,
const base::TimeDelta& delay,
const UserTask& user_task,
const OnStopTaskCallback& on_stop) { … }
void TimerUpdateScheduler::Stop() { … }
}