// Copyright 2018 The Chromium Authors // Use of this source code is governed by a BSD-style license that can be // found in the LICENSE file. #ifndef COMPONENTS_COMPONENT_UPDATER_TIMER_UPDATE_SCHEDULER_H_ #define COMPONENTS_COMPONENT_UPDATER_TIMER_UPDATE_SCHEDULER_H_ #include "base/functional/callback.h" #include "components/component_updater/timer.h" #include "components/component_updater/update_scheduler.h" namespace component_updater { // Scheduler that uses base::Timer to schedule updates. class TimerUpdateScheduler : public UpdateScheduler { … }; } // namespace component_updater #endif // COMPONENTS_COMPONENT_UPDATER_TIMER_UPDATE_SCHEDULER_H_