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

Commit fa4d8178 authored by Android (Google) Code Review's avatar Android (Google) Code Review Committed by The Android Open Source Project
Browse files

am 7b0d2d93: Merge change 3223 into donut

Merge commit '7b0d2d93'

* commit '7b0d2d93':
  Adding new Settings.Secure properties for the Text-To-Speech functionality.
parents 89d3a92e 7b0d2d93
Loading
Loading
Loading
Loading
+44 −0
Original line number Diff line number Diff line
@@ -110663,6 +110663,50 @@
 visibility="public"
>
</field>
<field name="TTS_DEFAULT_PITCH"
 type="java.lang.String"
 transient="false"
 volatile="false"
 value="&quot;tts_default_pitch&quot;"
 static="true"
 final="true"
 deprecated="not deprecated"
 visibility="public"
>
</field>
<field name="TTS_DEFAULT_RATE"
 type="java.lang.String"
 transient="false"
 volatile="false"
 value="&quot;tts_default_rate&quot;"
 static="true"
 final="true"
 deprecated="not deprecated"
 visibility="public"
>
</field>
<field name="TTS_DEFAULT_SYNTH"
 type="java.lang.String"
 transient="false"
 volatile="false"
 value="&quot;tts_default_synth&quot;"
 static="true"
 final="true"
 deprecated="not deprecated"
 visibility="public"
>
</field>
<field name="TTS_USE_DEFAULTS"
 type="java.lang.String"
 transient="false"
 volatile="false"
 value="&quot;tts_use_defaults&quot;"
 static="true"
 final="true"
 deprecated="not deprecated"
 visibility="public"
>
</field>
<field name="USB_MASS_STORAGE_ENABLED"
 type="java.lang.String"
 transient="false"
+23 −0
Original line number Diff line number Diff line
@@ -1939,6 +1939,29 @@ public final class Settings {
        public static final String ENABLED_ACCESSIBILITY_SERVICES =
            "enabled_accessibility_services";

        /**
         * Setting to always use the default text-to-speech settings regardless
         * of the application settings.
         * 1 = override application settings,
         * 0 = use application settings (if specified).
         */
        public static final String TTS_USE_DEFAULTS = "tts_use_defaults";

        /**
         * Default text-to-speech engine speech rate. 100 = 1x
         */
        public static final String TTS_DEFAULT_RATE = "tts_default_rate";

        /**
         * Default text-to-speech engine pitch. 100 = 1x
         */
        public static final String TTS_DEFAULT_PITCH = "tts_default_pitch";

        /**
         * Default text-to-speech engine.
         */
        public static final String TTS_DEFAULT_SYNTH = "tts_default_synth";

        /**
         * Whether to notify the user of open networks.
         * <p>