Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit 9a68f82f authored by Martin Kosiba's avatar Martin Kosiba Committed by Ben Murdoch
Browse files

Add super_onDrawVerticalScrollBar to WebView.PrivateAccess. DO NOT MERGE

Cherry pick of master I210dbab01c8b8d1eeff316a23c5d011e2e6c2a74

This exposes the super_onDrawVerticalScrollBar method which will
be called by the WebViewChromium implementation.

Change-Id: I3fe348633c163514e67b7712f1e9a086dee3d338
parent ed735c9a
Loading
Loading
Loading
Loading
+5 −0
Original line number Diff line number Diff line
@@ -1852,6 +1852,11 @@ public class WebView extends AbsoluteLayout
            return WebView.this.getHorizontalScrollbarHeight();
        }

        public void super_onDrawVerticalScrollBar(Canvas canvas, Drawable scrollBar,
                int l, int t, int r, int b) {
            WebView.super.onDrawVerticalScrollBar(canvas, scrollBar, l, t, r, b);
        }

        // ---- Access to (non-public) fields ----
        /** Raw setter for the scroll X value, without invoking onScrollChanged handlers etc. */
        public void setScrollXRaw(int scrollX) {