From: Youngjae Kim Date: Tue, 3 Mar 2015 11:40:32 +0000 (-0800) Subject: Revert "Add error types : DOWNLOAD_ERROR_NOT_SUPPORTED, DOWNLOAD_ERROR_INVALID_NETWOR... X-Git-Tag: submit/tizen_common/20150320.125801^0 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=1b9d90da4cd74e4d6fa83cb3b73528744eb58d8f;p=platform%2Fcore%2Fapi%2Furl-download.git Revert "Add error types : DOWNLOAD_ERROR_NOT_SUPPORTED, DOWNLOAD_ERROR_INVALID_NETWORK_TYPE" This reverts commit c0b97aadbcfdae97db07e5aaef60ca3ab031640f. Change-Id: I13540c16e13d534e9b46f8b06f2c13ebb88fd168 --- diff --git a/include/download.h b/include/download.h index b7d8c87..a3c4f7d 100755 --- a/include/download.h +++ b/include/download.h @@ -47,7 +47,6 @@ typedef enum DOWNLOAD_ERROR_NO_SPACE = TIZEN_ERROR_FILE_NO_SPACE_ON_DEVICE, /**< No space left on device */ DOWNLOAD_ERROR_FIELD_NOT_FOUND = TIZEN_ERROR_KEY_NOT_AVAILABLE, /**< Specified field not found */ DOWNLOAD_ERROR_PERMISSION_DENIED = TIZEN_ERROR_PERMISSION_DENIED, /**< Permission denied */ - DOWNLOAD_ERROR_NOT_SUPPORTED = TIZEN_ERROR_NOT_SUPPORTED, /**< Not supported */ DOWNLOAD_ERROR_INVALID_STATE = TIZEN_ERROR_WEB_CLASS | 0x21, /**< Invalid state */ DOWNLOAD_ERROR_CONNECTION_FAILED = TIZEN_ERROR_WEB_CLASS | 0x22, /**< Connection failed */ DOWNLOAD_ERROR_INVALID_URL = TIZEN_ERROR_WEB_CLASS | 0x24, /**< Invalid URL */ @@ -63,7 +62,6 @@ typedef enum DOWNLOAD_ERROR_RESPONSE_TIMEOUT = TIZEN_ERROR_WEB_CLASS | 0x33, /**< It does not call start API in some time although the download is created*/ DOWNLOAD_ERROR_SYSTEM_DOWN = TIZEN_ERROR_WEB_CLASS | 0x34, /**< There are no response from client after rebooting download daemon*/ DOWNLOAD_ERROR_ID_NOT_FOUND = TIZEN_ERROR_WEB_CLASS | 0x35, /**< The download id is not existed in download service module*/ - DOWNLOAD_ERROR_INVALID_NETWORK_TYPE = TIZEN_ERROR_DOWNLOAD | 0x36, /**< Network bonding is set but network type is not set as DOWNLOAD_NETWORK_ALL*/ DOWNLOAD_ERROR_NO_DATA = TIZEN_ERROR_NO_DATA, /**< No data because the set API is not called */ DOWNLOAD_ERROR_IO_ERROR = TIZEN_ERROR_IO_ERROR , /**< Internal I/O error */ } download_error_e;