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
This commit is contained in:
Adrian Roos
2019-07-16 18:35:15 +02:00
committed by Winson Chung
parent 36151597fb
commit e6911497de

View File

@@ -300,5 +300,5 @@ interface IWindowSession {
/** /**
* Called when the system gesture exclusion has changed. * 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);
} }