// 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_MODEL_DATA_TYPE_STORE_SERVICE_H_ #define COMPONENTS_SYNC_MODEL_DATA_TYPE_STORE_SERVICE_H_ #include "base/files/file_path.h" #include "base/memory/scoped_refptr.h" #include "base/task/sequenced_task_runner.h" #include "components/keyed_service/core/keyed_service.h" #include "components/sync/model/data_type_store.h" namespace syncer { // Handles the shared resources for DataTypeStore and related classes, // including a shared background sequence runner. class DataTypeStoreService : public KeyedService { … }; } // namespace syncer #endif // COMPONENTS_SYNC_MODEL_DATA_TYPE_STORE_SERVICE_H_