// 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_DATA_TYPE_CONTROLLER_H_ #define CHROME_BROWSER_SYNC_GLUE_EXTENSION_DATA_TYPE_CONTROLLER_H_ #include "base/functional/callback_forward.h" #include "base/memory/raw_ptr.h" #include "components/sync/service/syncable_service_based_data_type_controller.h" class Profile; namespace browser_sync { // Controller with custom logic to start the extensions machinery when sync is // starting. class ExtensionDataTypeController : public syncer::SyncableServiceBasedDataTypeController { … }; } // namespace browser_sync #endif // CHROME_BROWSER_SYNC_GLUE_EXTENSION_DATA_TYPE_CONTROLLER_H_