#ifndef UI_EVENTS_DEVICES_DEVICE_DATA_MANAGER_H_
#define UI_EVENTS_DEVICES_DEVICE_DATA_MANAGER_H_
#include <stdint.h>
#include <array>
#include <memory>
#include <vector>
#include "base/containers/flat_map.h"
#include "base/observer_list.h"
#include "ui/events/devices/device_hotplug_event_observer.h"
#include "ui/events/devices/events_devices_export.h"
#include "ui/events/devices/keyboard_device.h"
#include "ui/events/devices/touch_device_transform.h"
#include "ui/events/devices/touchpad_device.h"
#include "ui/events/devices/touchscreen_device.h"
namespace ui {
class DeviceDataManagerTest;
class InputDeviceEventObserver;
class EVENTS_DEVICES_EXPORT DeviceDataManager
: public DeviceHotplugEventObserver { … };
}
#endif