When getting the AUL_R_ECANCELED from the amd, the API will return
the WIDGET_ERROR_CANCELED.
This path is for backward compatibility.
Requires:
- https://review.tizen.org/gerrit/#/c/139230/ [aul]
- https://review.tizen.org/gerrit/#/c/139241/ [amd]
- https://review.tizen.org/gerrit/#/c/139242/ [widget-service]
Change-Id: I947aaf6283663894f532be7dbfe77e12bdfa6779
Signed-off-by: Hwankyu Jhun <h.jhun@samsung.com>
case AUL_R_EINVAL:
ret = WIDGET_ERROR_INVALID_PARAMETER;
break;
+ case AUL_R_ECANCELED:
+ ret = WIDGET_ERROR_CANCELED;
+ break;
default:
ret = WIDGET_ERROR_FAULT;
}