From c5d7db16d58d929d1f3dcc983c1002204578f35d Mon Sep 17 00:00:00 2001 From: Sangyoon Jang Date: Thu, 17 May 2018 20:06:49 +0900 Subject: [PATCH] Set default value of app-control visibility attribute Change-Id: I1567d0e729f3c47cfdf30fae003799198e9dc9ed Signed-off-by: Sangyoon Jang --- src/wgt/step/configuration/step_parse.cc | 1 + 1 file changed, 1 insertion(+) 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); } } -- 2.7.4