From: jongmyeongko Date: Wed, 16 Mar 2016 12:25:10 +0000 (+0900) Subject: support new system-event (outgoing msg) X-Git-Tag: submit/tizen/20160316.124916^0 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=ed605f806fc5ab5a5dc118e8fb6e6909f8dae995;p=platform%2Fcore%2Fappfw%2Fevent-system.git support new system-event (outgoing msg) Change-Id: Ic423795ff9a39b5eb34bb97662cdb7d30841c103 Signed-off-by: jongmyeongko --- diff --git a/src/esd_main.c b/src/esd_main.c index 9d9af13..b3c7732 100644 --- a/src/esd_main.c +++ b/src/esd_main.c @@ -30,7 +30,8 @@ static const char *event_launch_support_list[] = { SYS_EVENT_BATTERY_CHARGER_STATUS, SYS_EVENT_USB_STATUS, SYS_EVENT_EARJACK_STATUS, - SYS_EVENT_INCOMMING_MSG + SYS_EVENT_INCOMMING_MSG, + SYS_EVENT_OUTGOING_MSG }; struct privilege_info { @@ -41,7 +42,8 @@ struct privilege_info { static const struct privilege_info privilege_check_list[] = { {SYS_EVENT_DISPLAY_STATE, "http://tizen.org/privilege/display"}, {SYS_EVENT_WIFI_STATE, "http://tizen.org/privilege/network.get"}, - {SYS_EVENT_INCOMMING_MSG, "http://tizen.org/privilege/message.read"} + {SYS_EVENT_INCOMMING_MSG, "http://tizen.org/privilege/message.read"}, + {SYS_EVENT_OUTGOING_MSG, "http://tizen.org/privilege/message.read"} }; static int privilege_check_size = sizeof(privilege_check_list)/sizeof(struct privilege_info);