chromium/components/sync/service/syncable_service_based_data_type_controller.h

// Copyright 2018 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_SYNCABLE_SERVICE_BASED_DATA_TYPE_CONTROLLER_H_
#define COMPONENTS_SYNC_SERVICE_SYNCABLE_SERVICE_BASED_DATA_TYPE_CONTROLLER_H_

#include <memory>

#include "base/memory/weak_ptr.h"
#include "components/sync/base/data_type.h"
#include "components/sync/model/data_type_store.h"
#include "components/sync/service/data_type_controller.h"

namespace syncer {

class SyncableService;

// Controller responsible for integrating legacy data type implementations
// (SyncableService) within the new sync architecture (USS), for types living on
// the UI thread.
class SyncableServiceBasedDataTypeController : public DataTypeController {};

}  // namespace syncer

#endif  // COMPONENTS_SYNC_SERVICE_SYNCABLE_SERVICE_BASED_DATA_TYPE_CONTROLLER_H_