summaryrefslogtreecommitdiffstats
path: root/tests/VoiceInteraction
diff options
context:
space:
mode:
authorSandeep Siddhartha <sansid@google.com>2014-08-08 02:21:29 +0000
committerAndroid Git Automerger <android-git-automerger@android.com>2014-08-08 02:21:29 +0000
commita8054cfe3cf8ba033ab33767f39231c2a0af20cb (patch)
tree7d45de301a3957ff6731aa637e096edb91fc7e95 /tests/VoiceInteraction
parent38c010dd05350f1f3cbdecdb766f686b90380a5e (diff)
parent38bbb5967637fa3d92918926d3e61704d8ac4863 (diff)
downloadframeworks_base-a8054cfe3cf8ba033ab33767f39231c2a0af20cb.zip
frameworks_base-a8054cfe3cf8ba033ab33767f39231c2a0af20cb.tar.gz
frameworks_base-a8054cfe3cf8ba033ab33767f39231c2a0af20cb.tar.bz2
am 73d5dc67: am 969edb82: am 5885981a: Merge "Fix build break" into lmp-dev
* commit '73d5dc67665778a5cf01dc0cb0d586e57834c991': Fix build break
Diffstat (limited to 'tests/VoiceInteraction')
-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");
}