// 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 CHROME_BROWSER_SYNC_GLUE_EXTENSION_SETTING_DATA_TYPE_CONTROLLER_H_ #define CHROME_BROWSER_SYNC_GLUE_EXTENSION_SETTING_DATA_TYPE_CONTROLLER_H_ #include "base/functional/callback_forward.h" #include "base/memory/raw_ptr.h" #include "components/sync/service/non_ui_syncable_service_based_data_type_controller.h" class Profile; namespace browser_sync { // A DataTypeController that processes extension data on the extensions // background thread. // NOTE: Chrome OS uses a fork of this class for APP_SETTINGS. class ExtensionSettingDataTypeController : public syncer::NonUiSyncableServiceBasedDataTypeController { … }; } // namespace browser_sync #endif // CHROME_BROWSER_SYNC_GLUE_EXTENSION_SETTING_DATA_TYPE_CONTROLLER_H_