Bug 1257269 - Panning up in a scrollable element should not hide the toolbar r=kats,jchen

This commit is contained in:
Randall Barker
2016-03-24 15:00:27 -07:00
parent e0124f30ba
commit 60bcab7eab
12 changed files with 93 additions and 6 deletions

View File

@@ -100,13 +100,21 @@ AndroidContentController::UpdateOverscrollVelocity(const float aX, const float a
}
void
AndroidContentController::UpdateOverscrollOffset(const float aX,const float aY)
AndroidContentController::UpdateOverscrollOffset(const float aX, const float aY)
{
if (mAndroidWindow) {
mAndroidWindow->UpdateOverscrollOffset(aX, aY);
}
}
void
AndroidContentController::SetScrollingRootContent(const bool isRootContent)
{
if (mAndroidWindow) {
mAndroidWindow->SetScrollingRootContent(isRootContent);
}
}
void
AndroidContentController::NotifyAPZStateChange(const ScrollableLayerGuid& aGuid,
APZStateChange aChange,