Bug 1144831 - Remove the HandleLongTapUp callback and just use HandleSingleTap instead. r=botond

This commit is contained in:
Kartikaya Gupta
2015-03-20 14:26:52 -04:00
parent 7ce66107c4
commit 44eb6886c1
17 changed files with 8 additions and 134 deletions

View File

@@ -183,21 +183,6 @@ ChromeProcessController::HandleLongTap(const mozilla::CSSPoint& aPoint, Modifier
aInputBlockId, GetPresShellResolution());
}
void
ChromeProcessController::HandleLongTapUp(const CSSPoint& aPoint, Modifiers aModifiers,
const ScrollableLayerGuid& aGuid)
{
if (MessageLoop::current() != mUILoop) {
mUILoop->PostTask(
FROM_HERE,
NewRunnableMethod(this, &ChromeProcessController::HandleLongTapUp,
aPoint, aModifiers, aGuid));
return;
}
mAPZEventState->ProcessLongTapUp(aPoint, aModifiers, aGuid, GetPresShellResolution());
}
void
ChromeProcessController::NotifyAPZStateChange(const ScrollableLayerGuid& aGuid,
APZStateChange aChange,