am fc25c935: am c7deeffb: Updating current.txt after unhiding HotwordRecognition API

* commit 'fc25c935ab468f327f3fe42649269671667e7974':
  Updating current.txt after unhiding HotwordRecognition API
This commit is contained in:
Sandeep Siddhartha
2013-09-06 16:51:08 -07:00
committed by Android Git Automerger

View File

@@ -22831,6 +22831,26 @@ package android.speech {
}
package android.speech.hotword {
public abstract class HotwordRecognitionService extends android.app.Service {
ctor public HotwordRecognitionService();
method public android.os.IBinder onBind(android.content.Intent);
method public abstract void onStartHotwordRecognition(android.speech.hotword.HotwordRecognitionService.Callback);
method public abstract void onStopHotwordRecognition();
field public static final java.lang.String SERVICE_INTERFACE = "android.speech.hotword.HotwordRecognitionService";
}
public static class HotwordRecognitionService.Callback {
method public void onError(int) throws android.os.RemoteException;
method public void onHotwordEvent(int, android.os.Bundle) throws android.os.RemoteException;
method public void onHotwordRecognitionStarted() throws android.os.RemoteException;
method public void onHotwordRecognitionStopped() throws android.os.RemoteException;
method public void onHotwordRecognized(android.content.Intent) throws android.os.RemoteException;
}
}
package android.speech.tts {
public abstract interface SynthesisCallback {