// Copyright 2012 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_SYNC_ENGINE_SYNC_SCHEDULER_H_ #define COMPONENTS_SYNC_ENGINE_SYNC_SCHEDULER_H_ #include "base/compiler_specific.h" #include "base/functional/callback_forward.h" #include "base/time/time.h" #include "components/sync/base/sync_invalidation.h" #include "components/sync/engine/cycle/sync_cycle.h" #include "services/network/public/mojom/network_change_manager.mojom.h" namespace syncer { // A class to schedule syncer tasks intelligently. class SyncScheduler : public SyncCycle::Delegate { … }; } // namespace syncer #endif // COMPONENTS_SYNC_ENGINE_SYNC_SCHEDULER_H_