// 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_TEST_FAKE_SYNC_SCHEDULER_H_ #define COMPONENTS_SYNC_TEST_FAKE_SYNC_SCHEDULER_H_ #include <map> #include <memory> #include "components/sync/engine/sync_scheduler.h" namespace syncer { // A fake implementation of the SyncScheduler. If needed, we should add default // logic needed for tests (invoking callbacks, etc) here rather than in higher // level test classes. class FakeSyncScheduler : public SyncScheduler { … }; } // namespace syncer #endif // COMPONENTS_SYNC_TEST_FAKE_SYNC_SCHEDULER_H_