diff options
author | Przemyslaw Szczepaniak <pszczepaniak@google.com> | 2013-03-06 10:04:07 +0000 |
---|---|---|
committer | Przemyslaw Szczepaniak <pszczepaniak@google.com> | 2013-03-06 10:04:07 +0000 |
commit | 7341786b138cb52eac053108b524ea3296d40f6d (patch) | |
tree | 779f8ef7bd548ef2bcb89f947c5587b4ad341014 /core/java/android/speech | |
parent | fcf671be890f9fb49067c5f86b182bf8b8e7b9c0 (diff) | |
download | frameworks_base-7341786b138cb52eac053108b524ea3296d40f6d.zip frameworks_base-7341786b138cb52eac053108b524ea3296d40f6d.tar.gz frameworks_base-7341786b138cb52eac053108b524ea3296d40f6d.tar.bz2 |
Forgot to rename constructor to match class name.
Change-Id: I7e66c3dd26ec7f8be381b0dfd87ac686665206cd
Diffstat (limited to 'core/java/android/speech')
-rw-r--r-- | core/java/android/speech/tts/TextToSpeechService.java | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/core/java/android/speech/tts/TextToSpeechService.java b/core/java/android/speech/tts/TextToSpeechService.java index 6291d7c..4379418 100644 --- a/core/java/android/speech/tts/TextToSpeechService.java +++ b/core/java/android/speech/tts/TextToSpeechService.java @@ -660,7 +660,7 @@ public abstract class TextToSpeechService extends Service { private class SynthesisToFileOutputStreamSpeechItem extends SynthesisSpeechItem { private final FileOutputStream mFileOutputStream; - public SynthesisToFileSpeechDescriptorItem(Object callerIdentity, int callerUid, + public SynthesisToFileOutputStreamSpeechItem(Object callerIdentity, int callerUid, int callerPid, Bundle params, String text, FileOutputStream fileOutputStream) { super(callerIdentity, callerUid, callerPid, params, text); mFileOutputStream = fileOutputStream; |