Bug 1298173 - Remove redundant parameter. r=dvander

The parameter is always true if the tap type is a eSingleTap and false in
all other cases, so it's redundant. As it was added as an optimization in bug
1020199 removing it should be safe.

MozReview-Commit-ID: IPB8BUagQl6
This commit is contained in:
Kartikaya Gupta
2016-09-21 10:25:05 -04:00
parent a83b05829a
commit 42a6254f18
7 changed files with 8 additions and 18 deletions

View File

@@ -141,7 +141,7 @@ ContentProcessController::HandleTap(
{
if (mBrowser) {
mBrowser->HandleTap(aType, aPoint - mBrowser->GetChromeDisplacement(), aModifiers, aGuid,
aInputBlockId, (aType == TapType::eSingleTap));
aInputBlockId);
}
}