Revert input lock command 37/60837/1 accepted/tizen/common/20160302.193945 accepted/tizen/common/20160304.194900 accepted/tizen/common/20160304.195801 accepted/tizen/ivi/20160304.144728 accepted/tizen/mobile/20160304.144645 accepted/tizen/tv/20160304.144652 accepted/tizen/wearable/20160304.144709 submit/tizen/20160302.114013 submit/tizen/20160303.080605 submit/tizen/20160304.140231
authorJunghoon Park <jh9216.park@samsung.com>
Wed, 2 Mar 2016 11:27:54 +0000 (20:27 +0900)
committerJunghoon Park <jh9216.park@samsung.com>
Wed, 2 Mar 2016 11:27:54 +0000 (20:27 +0900)
Change-Id: I09cf4fe1d39e228ac1532c0f0902102b11164f57
Signed-off-by: Junghoon Park <jh9216.park@samsung.com>
include/aul_cmd.h
src/service.c

index 53d8b13..63ce4ba 100644 (file)
@@ -84,7 +84,6 @@ enum app_cmd {
        APP_SET_APP_CONTROL_DEFAULT_APP,
        APP_UNSET_APP_CONTROL_DEFAULT_APP,
        APP_START_ASYNC,
-       APP_INPUT_LOCK,
        APP_CMD_MAX
 };
 
index f587a07..e8b4d49 100755 (executable)
@@ -695,13 +695,6 @@ API int aul_svc_run_service(bundle *b, int request_code,
        return aul_svc_run_service_for_uid(b, request_code, cbfunc, data, getuid());
 }
 
-static void __request_input_lock(uid_t uid)
-{
-       unsigned char dummy[1] = { 0 };
-
-       aul_sock_send_raw(AUL_UTIL_PID, uid, APP_INPUT_LOCK, dummy, 0, AUL_SOCK_NONE);
-}
-
 API int aul_svc_run_service_for_uid(bundle *b, int request_code,
                                aul_svc_res_fn cbfunc, void *data, uid_t uid)
 {
@@ -760,8 +753,6 @@ API int aul_svc_run_service_for_uid(bundle *b, int request_code,
                goto end;
        }
 
-       __request_input_lock(uid);
-
        /*uri*/
        pkgname = _svc_db_get_app(info.op, info.origin_mime, info.uri, uid);
        if (pkgname != NULL) {