Merge "Adds onInvocationProgress method to AssistManager." into qt-dev

This commit is contained in:
Govinda Wasserman
2019-04-19 17:37:58 +00:00
committed by Android (Google) Code Review

View File

@@ -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();
}