blob: 9ddc96da9376e2b96fa11c722a5261a4801dbee6 [file] [log] [blame]
// Copyright 2012 The Chromium Authors. All rights reserved.
// 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_IMPL_H_
#define COMPONENTS_SYNC_ENGINE_ENGINE_COMPONENTS_FACTORY_IMPL_H_
#include <memory>
#include <string>
#include <vector>
#include "base/macros.h"
#include "components/sync/engine/engine_components_factory.h"
namespace syncer {
// An EngineComponentsFactory implementation designed for real production /
// normal use.
class EngineComponentsFactoryImpl : public EngineComponentsFactory {
public:
explicit EngineComponentsFactoryImpl(const Switches& switches);
~EngineComponentsFactoryImpl() override;
std::unique_ptr<SyncScheduler> BuildScheduler(
const std::string& name,
SyncCycleContext* context,
CancelationSignal* cancelation_signal,
bool ignore_auth_credentials) override;
std::unique_ptr<SyncCycleContext> BuildContext(
ServerConnectionManager* connection_manager,
syncable::Directory* directory,
ExtensionsActivity* extensions_activity,
const std::vector<SyncEngineEventListener*>& listeners,
DebugInfoGetter* debug_info_getter,
ModelTypeRegistry* model_type_registry,
const std::string& invalidator_client_id,
base::TimeDelta short_poll_interval,
base::TimeDelta long_poll_interval) override;
std::unique_ptr<syncable::DirectoryBackingStore> BuildDirectoryBackingStore(
StorageOption storage,
const std::string& dir_name,
const base::FilePath& backing_filepath) override;
Switches GetSwitches() const override;
private:
const Switches switches_;
DISALLOW_COPY_AND_ASSIGN(EngineComponentsFactoryImpl);
};
} // namespace syncer
#endif // COMPONENTS_SYNC_ENGINE_ENGINE_COMPONENTS_FACTORY_IMPL_H_