summaryrefslogtreecommitdiff
path: root/gfx/layers/apz/src/APZCTreeManager.cpp
diff options
context:
space:
mode:
authorMoonchild <moonchild@palemoon.org>2022-09-08 16:50:40 +0000
committerMoonchild <moonchild@palemoon.org>2022-09-08 16:50:40 +0000
commit00c5c3e7c2ed8b627fe1af2496945b583ea8d29a (patch)
treedb89a071c364318fa6c2007917715623d8d5fdec /gfx/layers/apz/src/APZCTreeManager.cpp
parentb8cebb4993a27b3aaaa08550c6ae4f20cdca8819 (diff)
downloaduxp-00c5c3e7c2ed8b627fe1af2496945b583ea8d29a.tar.gz
Re-unify most of gfxre-unify
Diffstat (limited to 'gfx/layers/apz/src/APZCTreeManager.cpp')
-rw-r--r--gfx/layers/apz/src/APZCTreeManager.cpp15
1 files changed, 0 insertions, 15 deletions
diff --git a/gfx/layers/apz/src/APZCTreeManager.cpp b/gfx/layers/apz/src/APZCTreeManager.cpp
index 297bf57fe2..c308754e5a 100644
--- a/gfx/layers/apz/src/APZCTreeManager.cpp
+++ b/gfx/layers/apz/src/APZCTreeManager.cpp
@@ -85,21 +85,6 @@ struct APZCTreeManager::TreeBuildingState {
std::map<ScrollableLayerGuid, AsyncPanZoomController*> mApzcMap;
};
-// Returns whether or not a wheel event action will be (or was) performed by
-// APZ. If this returns true, the event must not perform a synchronous
-// scroll.
-//
-// Even if this returns false, all wheel events in APZ-aware widgets must
-// be sent through APZ so they are transformed correctly for TabParent.
-static bool
-WillHandleWheelEvent(WidgetWheelEvent* aEvent)
-{
- return EventStateManager::WheelEventIsScrollAction(aEvent) &&
- (aEvent->mDeltaMode == nsIDOMWheelEvent::DOM_DELTA_LINE ||
- aEvent->mDeltaMode == nsIDOMWheelEvent::DOM_DELTA_PIXEL ||
- aEvent->mDeltaMode == nsIDOMWheelEvent::DOM_DELTA_PAGE);
-}
-
class APZCTreeManager::CheckerboardFlushObserver : public nsIObserver {
public:
NS_DECL_ISUPPORTS