typedef struct autofill_save_item_s *autofill_save_item_h;
/**
- * @brief The autofill save view information handle.
+ * @brief The handle of the view having autofill entries.
* @since_tizen 5.5
*/
typedef struct autofill_save_view_info_s *autofill_save_view_info_h;
int autofill_view_info_foreach_item(autofill_view_info_h vi, autofill_item_cb callback, void *user_data);
/**
- * @brief Creates autofill save view information.
+ * @brief Creates the view having autofill entries.
* @since_tizen 5.5
* @remarks If the function succeeds, @a vi handle must be released with autofill_save_view_info_destroy()
* @param[out] vi The handle of autofill for the saving view
int autofill_save_view_info_create(autofill_save_view_info_h *vi);
/**
- * @brief Destroys autofill save view information.
+ * @brief Destroys the view having autofill entries.
* @since_tizen 5.5
* @param[in] vi The autofill view info handle
* @return 0 on success, otherwise a negative error value
int autofill_save_view_info_destroy(autofill_save_view_info_h vi);
/**
- * @brief Sets the app ID in autofill save view information.
+ * @brief Sets the app ID in the view having autofill entries.
* @since_tizen 5.5
* @param[in] vi The handle of autofill for the saving view
* @param[in] app_id The app ID
int autofill_save_view_info_set_app_id(autofill_save_view_info_h vi, const char *app_id);
/**
- * @brief Gets the app ID from autofill save view information.
+ * @brief Gets the app ID from the view having autofill entries.
* @since_tizen 5.5
* @remarks @a app_id must be released using free().
* @param[in] vi The handle of autofill for the saving view
int autofill_save_view_info_get_app_id(autofill_save_view_info_h vi, char **app_id);
/**
- * @brief Sets the view ID in autofill save view information.
+ * @brief Sets the view ID in the view having autofill entries.
* @since_tizen 5.5
* @param[in] vi The handle of autofill for the saving view
* @param[in] view_id The view ID
int autofill_save_view_info_set_view_id(autofill_save_view_info_h vi, const char *view_id);
/**
- * @brief Gets the view ID from autofill save view information.
+ * @brief Gets the view ID from the view having autofill entries.
* @since_tizen 5.5
* @remarks @a view_id must be released using free().
* @param[in] vi The handle of autofill for the saving view
int autofill_save_view_info_get_view_title(autofill_save_view_info_h vi, char **view_title);
/**
- * @brief Adds autofill save item in autofill save view information.
+ * @brief Adds autofill save item in the view having autofill entries.
* @since_tizen 5.5
* @param[in] vi The handle of autofill for the saving view
* @param[in] it The autofill save item handle
int autofill_save_view_info_add_item(autofill_save_view_info_h vi, autofill_save_item_h it);
/**
- * @brief Retrieves all items in autofill save view information.
+ * @brief Retrieves all items in the view having autofill entries.
* @since_tizen 5.5
* @param[in] vi The handle of autofill for the saving view
* @param[in] callback The callback function to register