diff options
| -rw-r--r-- | packages/SystemUI/src/com/android/systemui/assist/AssistManager.java | 5 | ||||
| -rw-r--r-- | packages/SystemUI/src/com/android/systemui/assist/ui/DefaultUiController.java | 6 |
2 files changed, 0 insertions, 11 deletions
diff --git a/packages/SystemUI/src/com/android/systemui/assist/AssistManager.java b/packages/SystemUI/src/com/android/systemui/assist/AssistManager.java index 256c5d51c421..5077e18b06e4 100644 --- a/packages/SystemUI/src/com/android/systemui/assist/AssistManager.java +++ b/packages/SystemUI/src/com/android/systemui/assist/AssistManager.java @@ -81,11 +81,6 @@ public class AssistManager { void onGestureCompletion(float velocity); /** - * Called with the Bundle from VoiceInteractionSessionListener.onSetUiHints. - */ - void processBundle(Bundle hints); - - /** * Hides any SysUI for the assistant, but _does not_ close the assistant itself. */ void hide(); diff --git a/packages/SystemUI/src/com/android/systemui/assist/ui/DefaultUiController.java b/packages/SystemUI/src/com/android/systemui/assist/ui/DefaultUiController.java index f201a6fb1137..68242f0a0ac2 100644 --- a/packages/SystemUI/src/com/android/systemui/assist/ui/DefaultUiController.java +++ b/packages/SystemUI/src/com/android/systemui/assist/ui/DefaultUiController.java @@ -26,7 +26,6 @@ import android.content.Context; import android.graphics.PixelFormat; import android.metrics.LogMaker; import android.os.Build; -import android.os.Bundle; import android.util.Log; import android.view.Gravity; import android.view.LayoutInflater; @@ -94,11 +93,6 @@ public class DefaultUiController implements AssistManager.UiController { } @Override // AssistManager.UiController - public void processBundle(Bundle bundle) { - Log.e(TAG, "Bundle received but handling is not implemented; ignoring"); - } - - @Override // AssistManager.UiController public void onInvocationProgress(int type, float progress) { boolean invocationWasInProgress = mInvocationInProgress; |