Bug 1016481 - Defer calling ActiveElementManager::HandleTouchEnd until after we know whether the touch-end was cancelled. r=botond

This commit is contained in:
Kartikaya Gupta 2014-07-29 11:59:19 -04:00
Родитель b69c2652f8
Коммит 4e71db1224
2 изменённых файлов: 6 добавлений и 1 удалений

Просмотреть файл

@ -731,6 +731,7 @@ TabChild::TabChild(nsIContentChild* aManager, const TabContext& aContext, uint32
, mUpdateHitRegion(false)
, mPendingTouchPreventedResponse(false)
, mTouchEndCancelled(false)
, mEndTouchIsClick(false)
, mIgnoreKeyPressEvent(false)
, mActiveElementManager(new ActiveElementManager())
, mHasValidInnerSize(false)
@ -1913,7 +1914,7 @@ TabChild::RecvNotifyAPZStateChange(const ViewID& aViewId,
}
case APZStateChange::EndTouch:
{
mActiveElementManager->HandleTouchEnd(aArg);
mEndTouchIsClick = aArg;
break;
}
default:
@ -2151,9 +2152,12 @@ TabChild::RecvRealTouchEvent(const WidgetTouchEvent& aEvent,
case NS_TOUCH_END:
if (isTouchPrevented) {
mTouchEndCancelled = true;
mEndTouchIsClick = false;
}
// fall through
case NS_TOUCH_CANCEL:
mActiveElementManager->HandleTouchEnd(mEndTouchIsClick);
// fall through
case NS_TOUCH_MOVE: {
SendPendingTouchPreventedResponse(isTouchPrevented, aGuid);
break;

Просмотреть файл

@ -595,6 +595,7 @@ private:
void FireSingleTapEvent(LayoutDevicePoint aPoint);
bool mTouchEndCancelled;
bool mEndTouchIsClick;
bool mIgnoreKeyPressEvent;
nsRefPtr<ActiveElementManager> mActiveElementManager;