Change tizen version from 7.5 to 8.0 03/292803/2
authorSukhyungKang <shine.kang@samsung.com>
Mon, 15 May 2023 05:48:39 +0000 (14:48 +0900)
committerSukhyungKang <shine.kang@samsung.com>
Mon, 15 May 2023 05:50:38 +0000 (14:50 +0900)
Change-Id: I030821c2a57f8adfdbbe7359aa6c66d4ebe6e0b2
Signed-off-by: SukhyungKang <shine.kang@samsung.com>
include/app_control.h
include/app_control_internal.h

index 75e88fef13f2d4554451c8c68944e40c7f137b68..7a678198907263cd80f84c1b203cb1f3d65ab36d 100644 (file)
@@ -363,7 +363,7 @@ typedef enum {
 #define APP_CONTROL_OPERATION_MEDIA_CONTROLLER "http://tizen.org/appcontrol/operation/media_control"
 
 /**
- * @deprecated Deprecated since 7.5.
+ * @deprecated Deprecated since 8.0.
  * @brief Definition for the application control operation: Shows guide popup to privacy settings.
  * @details Input: APP_CONTROL_DATA_TYPE in extra is the text of guide type("open" or "use"). This is a mandatory field.\n
  *          Input: APP_CONTROL_DATA_FEATURE in extra is the text of the feature or function name which requires privacy privileges. \n
@@ -384,14 +384,14 @@ typedef enum {
 #define APP_CONTROL_OPERATION_INTENT "http://tizen.org/appcontrol/operation/intent"
 
 /**
- * @deprecated Deprecated since 7.5.
+ * @deprecated Deprecated since 8.0.
  * @brief Definition for the app_control data: Feature of function name.
  * @since_tizen @if WEARABLE 5.0 @endif
  */
 #define APP_CONTROL_DATA_FEATURE "http://tizen.org/appcontrol/data/feature"
 
 /**
- * @deprecated Deprecated since 7.5.
+ * @deprecated Deprecated since 8.0.
  * @brief Definition for the app_control data: List of privileges.
  * @since_tizen @if WEARABLE 5.0 @endif
  */
@@ -1560,7 +1560,7 @@ int app_control_get_component_id(app_control_h app_control,
 
 /**
  * @brief Sets the window position of application.
- * @since_tizen 7.5
+ * @since_tizen 8.0
  *
  * @param[in]   app_control The app_control handle
  * @param[in]   x           x position of application's left top
@@ -1578,7 +1578,7 @@ int app_control_set_window_position(app_control_h app_control,
 
 /**
  * @brief Gets the window position of application.
- * @since_tizen 7.5
+ * @since_tizen 8.0
  *
  * @param[in]   app_control The app_control handle
  * @param[out]   x          x position of application's left top
index 7ec91a4c3b99b757746ec9e4a7ca7fe3306f8ca9..c437bcecffdd43eba739e4955f2102cea4a6bd8d 100644 (file)
@@ -373,7 +373,7 @@ int app_control_unset_auto_restart(void);
  *          If the operation is #APP_CONTROL_OPERATION_DEFAULT, the application ID is mandatory to explicitly launch the application. \n
  *          It can set receiving timeout using @a timeout parameter.
  *          If there is an error that is not related to timeout, the error is returned immediately regardless of the @a timeout value.
- * @since_tizen 7.5
+ * @since_tizen 8.0
  * @privlevel public
  * @privilege %http://tizen.org/privilege/appmanager.launch
  * @remarks The function returns #APP_CONTROL_ERROR_LAUNCH_REJECTED if the operation value is #APP_CONTROL_OPERATION_LAUNCH_ON_EVENT which is only for handling the event from the platform or other application, refer to the @ref CAPI_EVENT_MODULE module.
@@ -402,7 +402,7 @@ int app_control_send_launch_request_with_timeout(app_control_h app_control, unsi
 /**
  * @brief Called when the default application information is delivered.
  * @remarks The @a appid MUST NOT be released by the application.
- * @since_tizen 7.5
+ * @since_tizen 8.0
  *
  * @param[in]   appid           The default application ID
  * @param[in]   user_data       The user data passed from the foreach function
@@ -414,7 +414,7 @@ typedef bool (*app_control_default_application_cb)(const char *appid, void *user
 
 /**
  * @brief Retrieves all default applications.
- * @since_tizen 7.5
+ * @since_tizen 8.0
  *
  * @param[in]   callback        The iteration callback function
  * @param[in]   user_data       The user data to be passed to the callback function