// Copyright 2020 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_FEED_CORE_V2_PUBLIC_REFRESH_TASK_SCHEDULER_H_ #define COMPONENTS_FEED_CORE_V2_PUBLIC_REFRESH_TASK_SCHEDULER_H_ #include "base/time/time.h" #include "components/feed/core/v2/public/types.h" namespace feed { // Schedules a background task for refreshing the Feed. // When the scheduled task executes, it calls // FeedStream::ExecuteRefreshTask(task_id). class RefreshTaskScheduler { … }; } // namespace feed #endif // COMPONENTS_FEED_CORE_V2_PUBLIC_REFRESH_TASK_SCHEDULER_H_