From: Sangyoon Jang Date: Thu, 17 May 2018 11:06:49 +0000 (+0900) Subject: Set default value of app-control visibility attribute X-Git-Tag: accepted/tizen/unified/20180521.003610~1 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=c5d7db16d58d929d1f3dcc983c1002204578f35d;p=platform%2Fcore%2Fappfw%2Fwgt-backend.git Set default value of app-control visibility attribute Change-Id: I1567d0e729f3c47cfdf30fae003799198e9dc9ed Signed-off-by: Sangyoon Jang --- diff --git a/src/wgt/step/configuration/step_parse.cc b/src/wgt/step/configuration/step_parse.cc index 1637c54..58b5baf 100644 --- a/src/wgt/step/configuration/step_parse.cc +++ b/src/wgt/step/configuration/step_parse.cc @@ -625,6 +625,7 @@ bool StepParse::FillAppControl(manifest_x* manifest) { app_control->operation = strdup(control.operation().c_str()); app_control->mime = strdup(control.mime().c_str()); app_control->uri = strdup(control.uri().c_str()); + app_control->visibility = strdup("local-only"); app->appcontrol = g_list_append(app->appcontrol, app_control); } }