// 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_UPDATE_SCHEDULER_H_ #define COMPONENTS_COMPONENT_UPDATER_UPDATE_SCHEDULER_H_ #include "base/functional/callback_forward.h" #include "base/time/time.h" namespace component_updater { // Abstract interface for an update task scheduler. class UpdateScheduler { … }; } // namespace component_updater #endif // COMPONENTS_COMPONENT_UPDATER_UPDATE_SCHEDULER_H_