From 320f065ca3484ee7a0bb62f606a359702b32fb7c Mon Sep 17 00:00:00 2001 From: "sooyeon.kim" Date: Thu, 26 Aug 2021 17:03:23 +0900 Subject: [PATCH] [ACR-1653][tts][Add] Add a new error type (TTS_ERROR_SCREEN_READER_OFF) Change-Id: I9c0d19967d5e72d3150fce27f55343b7ce2152ab Signed-off-by: sooyeon.kim --- error_messages/tts.xml | 4 ++++ include/private/tizen_error_private.h | 1 + 2 files changed, 5 insertions(+) diff --git a/error_messages/tts.xml b/error_messages/tts.xml index 2892520..c5fb4ee 100644 --- a/error_messages/tts.xml +++ b/error_messages/tts.xml @@ -28,4 +28,8 @@ TIZEN_ERROR_TTS | 0x07 Service reset + + TIZEN_ERROR_TTS | 0x08 + Screen reader is off + diff --git a/include/private/tizen_error_private.h b/include/private/tizen_error_private.h index d9b720f..6b78a1b 100644 --- a/include/private/tizen_error_private.h +++ b/include/private/tizen_error_private.h @@ -215,6 +215,7 @@ static err_info err_list[] = { ERR_ENTRY("TTS_ERROR_AUDIO_POLICY_BLOCKED", TIZEN_ERROR_TTS | 0x05, "Audio policy blocked"), ERR_ENTRY("TTS_ERROR_NOT_SUPPORTED_FEATURE", TIZEN_ERROR_TTS | 0x06, "Not supported feature of current engine"), ERR_ENTRY("TTS_ERROR_SERVICE_RESET", TIZEN_ERROR_TTS | 0x07, "Service reset"), + ERR_ENTRY("TTS_ERROR_SCREEN_READER_OFF", TIZEN_ERROR_TTS | 0x08, "Screen reader is off"), ERR_ENTRY("GENERIC_TEXT_CLASSIFIER_ERROR_ALREADY_DONE", TIZEN_ERROR_GENERIC_TEXT_CLASSIFIER | 0x01, "Operation already done"), ERR_ENTRY("GENERIC_TEXT_CLASSIFIER_ERROR_HANDLE_NOT_CREATED", TIZEN_ERROR_GENERIC_TEXT_CLASSIFIER | 0x02, "Handle not created"), ERR_ENTRY("GENERIC_TEXT_CLASSIFIER_ERROR_HANDLE_NOT_VALID", TIZEN_ERROR_GENERIC_TEXT_CLASSIFIER | 0x03, "Wrong handle passed"), -- 2.34.1