summaryrefslogtreecommitdiffstats
path: root/core
diff options
context:
space:
mode:
authorAndroid (Google) Code Review <android-gerrit@google.com>2009-07-08 14:43:40 -0700
committerAndroid (Google) Code Review <android-gerrit@google.com>2009-07-08 14:43:40 -0700
commit7761920b2a2efc76d08c63d5be1b3ce829746e4b (patch)
tree01b01385ede91938d92c00b349f4fe9bc040624d /core
parent6de4aed1c67263269f83f579ec5b06263d173ef3 (diff)
parente28aced7bb96b086b16df82ff9c75b08671eb7df (diff)
downloadframeworks_base-7761920b2a2efc76d08c63d5be1b3ce829746e4b.zip
frameworks_base-7761920b2a2efc76d08c63d5be1b3ce829746e4b.tar.gz
frameworks_base-7761920b2a2efc76d08c63d5be1b3ce829746e4b.tar.bz2
Merge change 6507 into donut
* changes: Remove unused definitions for default language in TextToSpeech as the default language is determined by the current Locale, not a hardcoded value. Add a value for the default TTS engine to use.
Diffstat (limited to 'core')
-rw-r--r--core/java/android/speech/tts/TextToSpeech.java4
1 files changed, 1 insertions, 3 deletions
diff --git a/core/java/android/speech/tts/TextToSpeech.java b/core/java/android/speech/tts/TextToSpeech.java
index 616b3f1..f90cbff 100644
--- a/core/java/android/speech/tts/TextToSpeech.java
+++ b/core/java/android/speech/tts/TextToSpeech.java
@@ -107,9 +107,7 @@ public class TextToSpeech {
public static final int FALLBACK_TTS_DEFAULT_RATE = 100; // 1x
public static final int FALLBACK_TTS_DEFAULT_PITCH = 100;// 1x
public static final int FALLBACK_TTS_USE_DEFAULTS = 0; // false
- public static final String FALLBACK_TTS_DEFAULT_LANG = "eng";
- public static final String FALLBACK_TTS_DEFAULT_COUNTRY = "";
- public static final String FALLBACK_TTS_DEFAULT_VARIANT = "";
+ public static final String FALLBACK_TTS_DEFAULT_SYNTH = "com.svox.pico";
// return codes for a TTS engine's check data activity
public static final int CHECK_VOICE_DATA_PASS = 1;