#ifndef UI_DISPLAY_CHROMEOS_X11_TOUCHSCREEN_DELEGATE_X11_H_
#define UI_DISPLAY_CHROMEOS_X11_TOUCHSCREEN_DELEGATE_X11_H_
#include "ui/display/chromeos/output_configurator.h"
struct _XDisplay;
typedef struct _XDisplay Display;
namespace ui {
class TouchscreenDelegateX11 : public OutputConfigurator::TouchscreenDelegate {
public:
TouchscreenDelegateX11();
virtual ~TouchscreenDelegateX11();
virtual void AssociateTouchscreens(
OutputConfigurator::DisplayStateList* outputs) OVERRIDE;
virtual void ConfigureCTM(
int touch_device_id,
const OutputConfigurator::CoordinateTransformation& ctm) OVERRIDE;
private:
Display* display_;
DISALLOW_COPY_AND_ASSIGN(TouchscreenDelegateX11);
};
}
#endif