diff options
| author | Jean-Michel Trivi <jmtrivi@google.com> | 2009-06-08 15:21:46 -0700 |
|---|---|---|
| committer | Jean-Michel Trivi <jmtrivi@google.com> | 2009-06-08 16:39:01 -0700 |
| commit | 21a6a6d26baf32593d63226f9728ddd66f0bd571 (patch) | |
| tree | 72601a371b3e3d55306778b3741f947e4db0d532 | |
| parent | 410ea66256b4b7883e9e6a3ee50170cf8701e61b (diff) | |
| download | frameworks_base-21a6a6d26baf32593d63226f9728ddd66f0bd571.zip frameworks_base-21a6a6d26baf32593d63226f9728ddd66f0bd571.tar.gz frameworks_base-21a6a6d26baf32593d63226f9728ddd66f0bd571.tar.bz2 | |
Moving the Tts java class from the android.tts package to the android.speech.tts package.
The Tts class (still hidden at this point) is the only Text-To-Speech class that will be
exposed to application developers.
| -rwxr-xr-x | core/java/android/speech/tts/Tts.java (renamed from tts/java/android/tts/Tts.java) | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/tts/java/android/tts/Tts.java b/core/java/android/speech/tts/Tts.java index 6c8b36d..804380d 100755 --- a/tts/java/android/tts/Tts.java +++ b/core/java/android/speech/tts/Tts.java @@ -13,7 +13,10 @@ * License for the specific language governing permissions and limitations under * the License. */ -package android.tts; +package android.speech.tts; + +import android.tts.ITts; +import android.tts.ITtsCallback; import android.content.ComponentName; import android.content.Context; |
