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

Commit e6911497 authored by Adrian Roos's avatar Adrian Roos Committed by Winson Chung
Browse files

GestureNav: make reportSystemGestureExclusionChanged oneway

When the WindowManager lock is contended, reportSystemGestureExclusionChanged can cause
jank. Making it oneway avoids this.

Fixes: 137650591
Test: make droid
Change-Id: I5d96b7e2225745b146014ad11cafaf0ad9a1b734
Merged-In: I5d96b7e2225745b146014ad11cafaf0ad9a1b734
parent 36151597
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -300,5 +300,5 @@ interface IWindowSession {
    /**
     * Called when the system gesture exclusion has changed.
     */
    void reportSystemGestureExclusionChanged(IWindow window, in List<Rect> exclusionRects);
    oneway void reportSystemGestureExclusionChanged(IWindow window, in List<Rect> exclusionRects);
}