Remove typo APIs 43/215743/1
authorJihoon Kim <jihoon48.kim@samsung.com>
Tue, 15 Oct 2019 07:11:53 +0000 (16:11 +0900)
committerJihoon Kim <jihoon48.kim@samsung.com>
Tue, 15 Oct 2019 07:12:02 +0000 (16:12 +0900)
Change-Id: Iba3e83699f4fbdc614cf772300f41dae7cba7567
Signed-off-by: Jihoon Kim <jihoon48.kim@samsung.com>
include/autofill_service.h
service_lib/autofill_service.c

index 604ace6..dcf1013 100644 (file)
@@ -189,17 +189,6 @@ int autofill_service_send_fill_response(int context_id, autofill_fill_response_h
  * @retval #AUTOFILL_ERROR_NONE No error
  * @retval #AUTOFILL_ERROR_INVALID_PARAMETER Invalid parameter
  */
-int autofill_service_set_commited_cb(autofill_service_committed_cb callback, void *user_data);
-
-/**
- * @brief Sets the callback to receive the commit request.
- * @since_tizen 5.5
- * @param[in] callback The callback function to register
- * @param[in] user_data The user data to be passed to the callback function
- * @return 0 on success, otherwise a negative error value
- * @retval #AUTOFILL_ERROR_NONE No error
- * @retval #AUTOFILL_ERROR_INVALID_PARAMETER Invalid parameter
- */
 int autofill_service_set_committed_cb(autofill_service_committed_cb callback, void *user_data);
 
 /**
@@ -208,14 +197,6 @@ int autofill_service_set_committed_cb(autofill_service_committed_cb callback, vo
  * @return 0 on success, otherwise a negative error value
  * @retval #AUTOFILL_ERROR_NONE No error
  */
-int autofill_service_unset_commited_cb(void);
-
-/**
- * @brief Unsets the callback to receive the commit request.
- * @since_tizen 5.5
- * @return 0 on success, otherwise a negative error value
- * @retval #AUTOFILL_ERROR_NONE No error
- */
 int autofill_service_unset_committed_cb(void);
 
 /**
index a9520b1..ad2df1c 100644 (file)
@@ -686,11 +686,6 @@ EXPORT_API int autofill_service_send_fill_response(int context_id, autofill_fill
     return ret;
 }
 
-EXPORT_API int autofill_service_set_commited_cb(autofill_service_committed_cb callback, void *user_data)
-{
-    return autofill_service_set_committed_cb(callback, user_data);
-}
-
 EXPORT_API int autofill_service_set_committed_cb(autofill_service_committed_cb callback, void *user_data)
 {
     if (!callback) {
@@ -704,11 +699,6 @@ EXPORT_API int autofill_service_set_committed_cb(autofill_service_committed_cb c
     return AUTOFILL_ERROR_NONE;
 }
 
-EXPORT_API int autofill_service_unset_commited_cb(void)
-{
-    return autofill_service_unset_committed_cb();
-}
-
 EXPORT_API int autofill_service_unset_committed_cb(void)
 {
     g_autofill_service_committed_cb = NULL;