From db92e35211d875eab75787c593eea2988c8a560f Mon Sep 17 00:00:00 2001 From: Sandeep Siddhartha Date: Thu, 7 Aug 2014 11:23:03 -0700 Subject: Fix build break Change-Id: I7af700671f1a2e910b6e08498381c8adb40631f8 --- .../src/com/android/test/voiceinteraction/MainInteractionService.java | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'tests/VoiceInteraction') diff --git a/tests/VoiceInteraction/src/com/android/test/voiceinteraction/MainInteractionService.java b/tests/VoiceInteraction/src/com/android/test/voiceinteraction/MainInteractionService.java index 02610f8..fcc4626 100644 --- a/tests/VoiceInteraction/src/com/android/test/voiceinteraction/MainInteractionService.java +++ b/tests/VoiceInteraction/src/com/android/test/voiceinteraction/MainInteractionService.java @@ -20,7 +20,7 @@ import android.content.Intent; import android.os.Bundle; import android.service.voice.AlwaysOnHotwordDetector; import android.service.voice.AlwaysOnHotwordDetector.Callback; -import android.service.voice.AlwaysOnHotwordDetector.TriggerAudio; +import android.service.voice.AlwaysOnHotwordDetector.EventPayload; import android.service.voice.VoiceInteractionService; import android.util.Log; @@ -37,7 +37,7 @@ public class MainInteractionService extends VoiceInteractionService { } @Override - public void onDetected(TriggerAudio triggerAudio) { + public void onDetected(EventPayload eventPayload) { Log.i(TAG, "onDetected"); } -- cgit v1.1