From b5702d25b7b5386fabd6a81a748ea2d6fe647fcd Mon Sep 17 00:00:00 2001 From: zheng_wenlong Date: Mon, 6 Aug 2018 11:56:42 +0900 Subject: Use appid between homescreen-service and apps Use appid between hss and apps, and check event destination in libhomescreen. So these is no need compare code when recived Event_TapShortcut Event. BUG-AGL: SPEC-1645 Change-Id: I3609a157ffdf31aa19cad6ae0f809f52e2129d0d Signed-off-by: zheng_wenlong --- src/homescreen.c | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) (limited to 'src/homescreen.c') diff --git a/src/homescreen.c b/src/homescreen.c index f1a8fcd..ee4b9b5 100644 --- a/src/homescreen.c +++ b/src/homescreen.c @@ -47,7 +47,7 @@ static struct afb_event ev_reserved; static const char _error[] = "error"; -static const char _application_name[] = "application_name"; +static const char _application_id[] = "application_id"; static const char _display_message[] = "display_message"; static const char _reply_message[] = "reply_message"; @@ -69,7 +69,7 @@ static void pingSample(struct afb_req request) * * #### Parameters * Request key - * - application_name : application name + * - application_id : application id * * #### Return * Nothing @@ -80,14 +80,14 @@ static void tap_shortcut (struct afb_req request) HMI_NOTICE("homescreen-service","called."); int ret = 0; - const char* value = afb_req_value(request, _application_name); + const char* value = afb_req_value(request, _application_id); if (value) { HMI_NOTICE("homescreen-service","request params = %s.", value); struct json_object* push_obj = json_object_new_object(); hs_add_object_to_json_object_str( push_obj, 2, - _application_name, value); + _application_id, value); afb_event_push(ev_tap_shortcut, push_obj); } else { afb_req_fail_f(request, "failed", "called %s, Unknown palameter", __FUNCTION__); -- cgit 1.2.3-korg