chromium/components/sync_user_events/user_event_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_USER_EVENTS_USER_EVENT_DATA_TYPE_CONTROLLER_H_
#define COMPONENTS_SYNC_USER_EVENTS_USER_EVENT_DATA_TYPE_CONTROLLER_H_

#include <memory>

#include "base/memory/raw_ptr.h"
#include "components/sync/service/data_type_controller.h"
#include "components/sync/service/sync_service_observer.h"

namespace syncer {

class DataTypeControllerDelegate;
class SyncService;

class UserEventDataTypeController : public syncer::DataTypeController,
                                    public syncer::SyncServiceObserver {};

}  // namespace syncer

#endif  // COMPONENTS_SYNC_USER_EVENTS_USER_EVENT_DATA_TYPE_CONTROLLER_H_