support new system-event (outgoing msg) 46/62546/1 accepted/tizen/common/20160317.160303 accepted/tizen/ivi/20160318.112624 accepted/tizen/mobile/20160318.111900 accepted/tizen/tv/20160318.112218 accepted/tizen/wearable/20160318.112232 submit/tizen/20160316.124916 submit/tizen/20160317.005826
authorjongmyeongko <jongmyeong.ko@samsung.com>
Wed, 16 Mar 2016 12:25:10 +0000 (21:25 +0900)
committerjongmyeongko <jongmyeong.ko@samsung.com>
Wed, 16 Mar 2016 12:25:10 +0000 (21:25 +0900)
Change-Id: Ic423795ff9a39b5eb34bb97662cdb7d30841c103
Signed-off-by: jongmyeongko <jongmyeong.ko@samsung.com>
src/esd_main.c

index 9d9af13..b3c7732 100644 (file)
@@ -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);