Replace tbm to screen-connector 17/104017/2 accepted/tizen_3.0.m2_mobile accepted/tizen_3.0.m2_tv accepted/tizen_3.0.m2_wearable tizen_3.0.m2 accepted/tizen/3.0.m2/mobile/20170104.122215 accepted/tizen/3.0.m2/tv/20170104.122445 accepted/tizen/3.0.m2/wearable/20170104.122846 accepted/tizen/3.0/common/20161221.180919 accepted/tizen/3.0/ivi/20161221.010032 accepted/tizen/3.0/mobile/20161221.010217 accepted/tizen/3.0/tv/20161221.005813 accepted/tizen/3.0/wearable/20161221.005943 submit/tizen_3.0.m2/20170104.093749 submit/tizen_3.0/20161219.021901 submit/tizen_3.0/20161220.012114 submit/tizen_3.0/20161220.014437
authorHyunho Kang <hhstark.kang@samsung.com>
Mon, 12 Dec 2016 06:03:39 +0000 (15:03 +0900)
committerHyunho Kang <hhstark.kang@samsung.com>
Mon, 12 Dec 2016 06:05:41 +0000 (22:05 -0800)
Change-Id: Icd7d1ae8c78e860fcaf816ee880c7f6ba4d06974
Signed-off-by: Hyunho Kang <hhstark.kang@samsung.com>
CMakeLists.txt
packaging/appcore-widget.spec
src/widget_app.c

index 2099f82..13129fc 100644 (file)
@@ -37,6 +37,7 @@ pkg_check_modules(pkg_widget REQUIRED
                capi-system-info
                ecore-wayland
                tizen-remote-surface-client
+               screen_connector_provider
                )
 FOREACH(flag ${pkg_widget_CFLAGS})
        SET(EXTRA_CFLAGS_widget "${EXTRA_CFLAGS_widget} ${flag}")
index 5355ca0..8bdedaa 100644 (file)
@@ -19,6 +19,7 @@ BuildRequires:  pkgconfig(widget_service)
 BuildRequires:  pkgconfig(capi-system-info)
 BuildRequires: pkgconfig(wayland-tbm-client)
 BuildRequires: pkgconfig(ecore-wayland)
+BuildRequires: pkgconfig(screen_connector_provider)
 BuildRequires:  cmake
 
 
index 4ee4e2e..3b85e32 100755 (executable)
@@ -36,7 +36,7 @@
 #include <system_info.h>
 #include <vconf.h>
 #include <vconf-internal-keys.h>
-#include <aul_rsm_provider.h>
+#include <screen_connector_provider.h>
 
 #include "widget_app.h"
 #include "widget-log.h"
@@ -891,8 +891,7 @@ static int __before_loop(int argc, char **argv)
                _E("failed to get launch argv"); /* LCOV_EXCL_LINE */
        }
 
-       aul_rsm_provider_init();
-
+       screen_connector_provider_init();
        elm_init(argc, argv);
 
        r = aul_launch_init(__aul_handler, NULL);
@@ -963,7 +962,7 @@ static void __after_loop()
        if (app_ops->terminate)
                app_ops->terminate(app_user_data);
 
-       aul_rsm_provider_fini();
+       screen_connector_provider_fini();
 
        _widget_app_free_viewer_endpoint();
        _widget_core_unset_appcore_event_cb();
@@ -1393,8 +1392,7 @@ EXPORT_API int widget_app_get_elm_win(widget_context_h context,
                _E("failed to get surface"); /* LCOV_EXCL_LINE */
                goto fault; /* LCOV_EXCL_LINE */
        }
-
-       aul_rsm_provider_remote_enable(cxt->id, surface);
+       screen_connector_provider_remote_enable(cxt->id, surface);
 
        ecore_wl_window_class_name_set(wl_win, cxt->id);
        elm_win_aux_hint_add(ret_win, "wm.policy.win.user.geometry", "1");