diff options
author | Sandeep Siddhartha <sansid@google.com> | 2014-08-07 11:23:03 -0700 |
---|---|---|
committer | Sandeep Siddhartha <sansid@google.com> | 2014-08-07 11:23:03 -0700 |
commit | db92e35211d875eab75787c593eea2988c8a560f (patch) | |
tree | ffe5bb459413e6bc5d2723d25c9324defd8a97eb /tests/VoiceInteraction | |
parent | 256e1a62673472d685232d88ad4d067eb82deeac (diff) | |
download | frameworks_base-db92e35211d875eab75787c593eea2988c8a560f.zip frameworks_base-db92e35211d875eab75787c593eea2988c8a560f.tar.gz frameworks_base-db92e35211d875eab75787c593eea2988c8a560f.tar.bz2 |
Fix build break
Change-Id: I7af700671f1a2e910b6e08498381c8adb40631f8
Diffstat (limited to 'tests/VoiceInteraction')
-rw-r--r-- | tests/VoiceInteraction/src/com/android/test/voiceinteraction/MainInteractionService.java | 4 |
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"); } |