chromium/components/sync/service/data_type_manager_impl.h

// Copyright 2014 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_SERVICE_DATA_TYPE_MANAGER_IMPL_H_
#define COMPONENTS_SYNC_SERVICE_DATA_TYPE_MANAGER_IMPL_H_

#include <map>

#include "base/containers/queue.h"
#include "base/memory/raw_ptr.h"
#include "base/memory/weak_ptr.h"
#include "base/time/time.h"
#include "components/sync/engine/data_type_configurer.h"
#include "components/sync/service/configure_context.h"
#include "components/sync/service/data_type_controller.h"
#include "components/sync/service/data_type_manager.h"
#include "components/sync/service/model_load_manager.h"

namespace syncer {

class DataTypeEncryptionHandler;
class DataTypeManagerObserver;

class DataTypeManagerImpl : public DataTypeManager,
                            public ModelLoadManagerDelegate {};

}  // namespace syncer

#endif  // COMPONENTS_SYNC_SERVICE_DATA_TYPE_MANAGER_IMPL_H_