Bug 912931 - Fix for double click events with apz enabled. r=bbondy

This commit is contained in:
Jim Mathies 2013-09-06 14:56:13 -05:00
parent 02bb70559a
commit e09e98b9a0

View File

@ -1532,37 +1532,16 @@ MetroWidget::RequestContentRepaint(const FrameMetrics& aFrameMetrics)
void
MetroWidget::HandleDoubleTap(const CSSIntPoint& aPoint)
{
LogFunction();
if (!mMetroInput) {
return;
}
mMetroInput->HandleDoubleTap(CSSIntPointToLayoutDeviceIntPoint(aPoint));
}
void
MetroWidget::HandleSingleTap(const CSSIntPoint& aPoint)
{
LogFunction();
if (!mMetroInput) {
return;
}
mMetroInput->HandleSingleTap(CSSIntPointToLayoutDeviceIntPoint(aPoint));
}
void
MetroWidget::HandleLongTap(const CSSIntPoint& aPoint)
{
LogFunction();
if (!mMetroInput) {
return;
}
mMetroInput->HandleLongTap(CSSIntPointToLayoutDeviceIntPoint(aPoint));
}
void