diff options
author | Greg Kaiser <gkaiser@google.com> | 2021-02-18 05:39:24 +0000 |
---|---|---|
committer | Android (Google) Code Review <android-gerrit@google.com> | 2021-02-18 05:39:24 +0000 |
commit | a2584ca15598ab97273ca79d1b7ac7dda9cc2a53 (patch) | |
tree | 228a7f5dc38faa2ddec54d73b1f3f6a775d70ce5 /services/java/com | |
parent | bfe5028a311485fa7331d0aa6d0daed1cfbbcd5c (diff) | |
parent | c09430c189c16870d4d13105b7449961988f2866 (diff) |
Merge "Revert "Add a system TextToSpeech implementation that initiates ..."" into sc-dev
Diffstat (limited to 'services/java/com')
-rw-r--r-- | services/java/com/android/server/SystemServer.java | 10 |
1 files changed, 0 insertions, 10 deletions
diff --git a/services/java/com/android/server/SystemServer.java b/services/java/com/android/server/SystemServer.java index dd2dd8150165..2b09d12c97c7 100644 --- a/services/java/com/android/server/SystemServer.java +++ b/services/java/com/android/server/SystemServer.java @@ -326,8 +326,6 @@ public final class SystemServer implements Dumpable { "com.android.server.musicrecognition.MusicRecognitionManagerService"; private static final String SYSTEM_CAPTIONS_MANAGER_SERVICE_CLASS = "com.android.server.systemcaptions.SystemCaptionsManagerService"; - private static final String TEXT_TO_SPEECH_MANAGER_SERVICE_CLASS = - "com.android.server.texttospeech.TextToSpeechManagerService"; private static final String TIME_ZONE_RULES_MANAGER_SERVICE_CLASS = "com.android.server.timezone.RulesManagerService$Lifecycle"; private static final String IOT_SERVICE_CLASS = @@ -1715,7 +1713,6 @@ public final class SystemServer implements Dumpable { startAttentionService(context, t); startRotationResolverService(context, t); startSystemCaptionsManagerService(context, t); - startTextToSpeechManagerService(context, t); // System Speech Recognition Service if (deviceHasConfigString(context, @@ -2921,13 +2918,6 @@ public final class SystemServer implements Dumpable { t.traceEnd(); } - private void startTextToSpeechManagerService(@NonNull Context context, - @NonNull TimingsTraceAndSlog t) { - t.traceBegin("StartTextToSpeechManagerService"); - mSystemServiceManager.startService(TEXT_TO_SPEECH_MANAGER_SERVICE_CLASS); - t.traceEnd(); - } - private void startContentCaptureService(@NonNull Context context, @NonNull TimingsTraceAndSlog t) { // First check if it was explicitly enabled by DeviceConfig |