diff --git a/packages/SystemUI/src/com/android/systemui/assist/AssistManager.java b/packages/SystemUI/src/com/android/systemui/assist/AssistManager.java index 94bb1f3e329e2..1bd8e0d2ce0f0 100644 --- a/packages/SystemUI/src/com/android/systemui/assist/AssistManager.java +++ b/packages/SystemUI/src/com/android/systemui/assist/AssistManager.java @@ -204,6 +204,11 @@ public class AssistManager implements ConfigurationChangedReceiver { return false; } + /** Called when the user is performing an assistant invocation action (e.g. Active Edge) */ + public void onInvocationProgress(int type, float progress) { + // intentional no-op, vendor's AssistManager implementation should override if needed. + } + public void hideAssist() { mAssistUtils.hideCurrentSession(); }