summaryrefslogtreecommitdiffstats
path: root/tests/VoiceInteraction/src
diff options
context:
space:
mode:
authorSandeep Siddhartha <sansid@google.com>2014-08-07 18:27:31 +0000
committerAndroid (Google) Code Review <android-gerrit@google.com>2014-08-07 15:31:24 +0000
commit3da5ba05d601778ea11dd87c1e8c9e9827e2a520 (patch)
tree4b362a17a999d9340a38693e333824a832960f71 /tests/VoiceInteraction/src
parent57c84544d9468a3101bce4d4cb70c2994a126fd5 (diff)
parentdb92e35211d875eab75787c593eea2988c8a560f (diff)
downloadframeworks_base-3da5ba05d601778ea11dd87c1e8c9e9827e2a520.zip
frameworks_base-3da5ba05d601778ea11dd87c1e8c9e9827e2a520.tar.gz
frameworks_base-3da5ba05d601778ea11dd87c1e8c9e9827e2a520.tar.bz2
Merge "Fix build break" into lmp-dev
Diffstat (limited to 'tests/VoiceInteraction/src')
-rw-r--r--tests/VoiceInteraction/src/com/android/test/voiceinteraction/MainInteractionService.java4
1 files changed, 2 insertions, 2 deletions
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");
}