Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit 8e235b7b authored by Jean-Michel Trivi's avatar Jean-Michel Trivi Committed by Android Git Automerger
Browse files

am 1e1b6b72: Merge change 20514 into donut

Merge commit '1e1b6b72'

* commit '1e1b6b72':
  Fix bug 2022435.
parents 6a332cf7 1e1b6b72
Loading
Loading
Loading
Loading
+16 −0
Original line number Diff line number Diff line
@@ -188,6 +188,12 @@ public class TextToSpeech {
        public static final String ACTION_INSTALL_TTS_DATA =
                "android.speech.tts.engine.INSTALL_TTS_DATA";

        /**
         * {@hide}
         */
        @SdkConstant(SdkConstantType.BROADCAST_INTENT_ACTION)
        public static final String ACTION_TTS_DATA_INSTALLED =
                "android.speech.tts.engine.TTS_DATA_INSTALLED";
        /**
         * Broadcast Action: Starts the activity from the platform Text-To-Speech
         * engine to verify the proper installation and availability of the
@@ -233,6 +239,16 @@ public class TextToSpeech {
         */
        public static final String EXTRA_VOICE_DATA_FILES_INFO = "dataFilesInfo";

        // extras for a TTS engine's data installation
        /**
         * Extra information received with the {@link #ACTION_TTS_DATA_INSTALLED} intent
         * which indicates whether the TTS data installation requested with
         * {@link #ACTION_INSTALL_TTS_DATA} completed successfully or not. The value is
         * {@link TextToSpeech#SUCCESS} or {@link TextToSpeech#ERROR}.
         * {@hide}
         */
        public static final String EXTRA_TTS_DATA_INSTALLED = "dataInstalled";

        // keys for the parameters passed with speak commands. Hidden keys are used internally
        // to maintain engine state for each TextToSpeech instance.
        /**