summaryrefslogtreecommitdiff
path: root/include
diff options
context:
space:
mode:
authorHwankyu Jhun <h.jhun@samsung.com>2016-05-23 15:49:51 +0900
committerHwankyu Jhun <h.jhun@samsung.com>2016-05-25 11:58:23 +0900
commit1469ddee08792c5a0b2746dc373f53311739dc88 (patch)
tree5ced40101b9d309a54ad7cb98f860170c33fc2f7 /include
parent87a2d51008a9d71334fd4fa183089c6e8f5cc349 (diff)
downloadapp-manager-1469ddee08792c5a0b2746dc373f53311739dc88.tar.gz
app-manager-1469ddee08792c5a0b2746dc373f53311739dc88.tar.bz2
app-manager-1469ddee08792c5a0b2746dc373f53311739dc88.zip
Remove the privileges
Change-Id: Ifec58c68c3c70f5698b24c7074d328b1ca6f90fe Signed-off-by: Hwankyu Jhun <h.jhun@samsung.com>
Diffstat (limited to 'include')
-rw-r--r--include/app_context.h3
-rw-r--r--include/app_manager.h3
2 files changed, 0 insertions, 6 deletions
diff --git a/include/app_context.h b/include/app_context.h
index c0e3ae7..3941f1d 100644
--- a/include/app_context.h
+++ b/include/app_context.h
@@ -141,8 +141,6 @@ int app_context_get_package_id(app_context_h app_context, char **pkg_id);
/**
* @brief Gets the application state with the given application context.
* @since_tizen 3.0
- * @privlevel public
- * @privilege %http://tizen.org/privilege/packagemanager.info
* @remarks Note that application's state might be changed after you get app_context.
* This API just returns the state of application when you get the app_context.
* @param[in] app_context The application context
@@ -151,7 +149,6 @@ int app_context_get_package_id(app_context_h app_context, char **pkg_id);
* otherwise a negative error value
* @retval #APP_MANAGER_ERROR_NONE Successful
* @retval #APP_MANAGER_ERROR_INVALID_PARAMETER Invalid parameter
- * @retval #APP_MANAGER_ERROR_PERMISSION_DENIED Permission denied
*/
int app_context_get_app_state(app_context_h app_context, app_state_e *state);
diff --git a/include/app_manager.h b/include/app_manager.h
index 9f43cc9..548d011 100644
--- a/include/app_manager.h
+++ b/include/app_manager.h
@@ -190,15 +190,12 @@ int app_manager_foreach_app_context(app_manager_app_context_cb callback, void *u
* @details You can iterate all the running application contexts using this API.
* This API is similar to app_manager_foreach_app_context() except that this API iterates application contexts including sub apps in application groups.
* @since_tizen 3.0
- * @privlevel public
- * @privilege %http://tizen.org/privilege/packagemanager.info
* @param[in] callback The callback function to invoke
* @param[in] user_data The user data to be passed to the callback function
* @return @c 0 on success,
* otherwise a negative error value
* @retval #APP_MANAGER_ERROR_NONE Successful
* @retval #APP_MANAGER_ERROR_INVALID_PARAMETER Invalid parameter
- * @retval #APP_MANAGER_ERROR_PERMISSION_DENIED Permission denied
* @post This function invokes app_manager_app_context_cb() for each application context.
* @see app_manager_app_context_cb()
*/