From: sooyeon.kim Date: Thu, 26 Aug 2021 08:03:23 +0000 (+0900) Subject: [ACR-1653][tts][Add] Add a new error type (TTS_ERROR_SCREEN_READER_OFF) X-Git-Tag: submit/tizen/20210831.013408~1 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=refs%2Fchanges%2F14%2F263114%2F1;p=platform%2Fcore%2Fapi%2Fcommon.git [ACR-1653][tts][Add] Add a new error type (TTS_ERROR_SCREEN_READER_OFF) Change-Id: I9c0d19967d5e72d3150fce27f55343b7ce2152ab Signed-off-by: sooyeon.kim --- 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"),