// 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_ENGINE_COMPONENTS_FACTORY_H_ #define COMPONENTS_SYNC_ENGINE_ENGINE_COMPONENTS_FACTORY_H_ #include <memory> #include <string> #include <vector> #include "base/time/time.h" namespace syncer { class CancelationSignal; class DebugInfoGetter; class ExtensionsActivity; class DataTypeRegistry; class ServerConnectionManager; class SyncCycleContext; class SyncEngineEventListener; class SyncScheduler; // EngineComponentsFactory exists so that tests can override creation of // components used by the SyncManager and other things inside engine/. class EngineComponentsFactory { … }; } // namespace syncer #endif // COMPONENTS_SYNC_ENGINE_ENGINE_COMPONENTS_FACTORY_H_