From 9ac8b781b929afc424d509378b5a0d8c74b2bff2 Mon Sep 17 00:00:00 2001 From: Tony Wickham Date: Tue, 13 Apr 2021 14:29:19 -0700 Subject: [PATCH] Remove SystemUiProxy#monitorGestureInput() as it's no longer used Test: compiles and runs locally Bug: 185266621 Change-Id: I4d40de269007178550cf1a9e9e906018badc6f74 --- .../src/com/android/quickstep/SystemUiProxy.java | 12 ------------ 1 file changed, 12 deletions(-) diff --git a/quickstep/src/com/android/quickstep/SystemUiProxy.java b/quickstep/src/com/android/quickstep/SystemUiProxy.java index 1f332c4dda..3edce6f613 100644 --- a/quickstep/src/com/android/quickstep/SystemUiProxy.java +++ b/quickstep/src/com/android/quickstep/SystemUiProxy.java @@ -254,18 +254,6 @@ public class SystemUiProxy implements ISystemUiProxy, } } - @Override - public Bundle monitorGestureInput(String name, int displayId) { - if (mSystemUiProxy != null) { - try { - return mSystemUiProxy.monitorGestureInput(name, displayId); - } catch (RemoteException e) { - Log.w(TAG, "Failed call monitorGestureInput: " + name, e); - } - } - return null; - } - @Override public void notifyAccessibilityButtonClicked(int displayId) { if (mSystemUiProxy != null) {