From b9f2e788c1f6aab3f3cd8c6dd385e047f4053bad Mon Sep 17 00:00:00 2001 From: Hwankyu Jhun Date: Mon, 29 Nov 2021 16:06:27 +0900 Subject: [PATCH] Remove unnecessary tizen policy listener AppCore doesn't handle any events when the callback function is invoked. This patch removes unnecessary tizen policy listener. Change-Id: I2a231af179238e64d3a16d773af3774551f35f09 Signed-off-by: Hwankyu Jhun --- src/ui_base/appcore_ui_base.c | 106 ------------------------------------------ 1 file changed, 106 deletions(-) diff --git a/src/ui_base/appcore_ui_base.c b/src/ui_base/appcore_ui_base.c index 6961f47..dd54c9f 100644 --- a/src/ui_base/appcore_ui_base.c +++ b/src/ui_base/appcore_ui_base.c @@ -105,109 +105,6 @@ static struct wl_display *dsp; static struct wl_registry *reg; static struct tizen_policy *tz_policy; -static void _wl_cb_conformant(void *data, - struct tizen_policy *tizen_policy, - struct wl_surface *surface_resource, - uint32_t is_conformant) -{ - ; // nothing to do. -} - -static void _wl_cb_conformant_area(void *data, - struct tizen_policy *tizen_policy, - struct wl_surface *surface_resource, - uint32_t conformant_part, - uint32_t state, - int32_t x, int32_t y, int32_t w, int32_t h) -{ - ; // nothing to do. -} - -static void _wl_cb_notification_done(void *data, - struct tizen_policy *tizen_policy, - struct wl_surface *surface, - int32_t level, - uint32_t state) -{ - ; // nothing to do. -} - -static void _wl_cb_transient_for_done(void *data, - struct tizen_policy *tizen_policy, - uint32_t child_id) -{ - ; // nothing to do. -} - -static void _wl_cb_scr_mode_done(void *data, - struct tizen_policy *tizen_policy, - struct wl_surface *surface, - uint32_t mode, - uint32_t state) -{ - ; // nothing to do. -} - -static void _wl_cb_iconify_state_changed(void *data, - struct tizen_policy *tizen_policy, - struct wl_surface *surface_resource, - uint32_t iconified, - uint32_t force) -{ - ; // nothing to do. -} - -static void _wl_cb_supported_aux_hints(void *data, - struct tizen_policy *tizen_policy, - struct wl_surface *surface_resource, - struct wl_array *hints, - uint32_t num_hints) -{ - ; // nothing to do. -} - -static void _wl_cb_allowed_aux_hint(void *data, - struct tizen_policy *tizen_policy, - struct wl_surface *surface_resource, - int id) -{ - ; // nothing to do. -} - -static void _wl_cb_aux_message(void *data, - struct tizen_policy *tizen_policy, - struct wl_surface *surface_resource, - const char *key, - const char *val, - struct wl_array *options) -{ - ; // nothing to do. -} - -static void _wl_cb_conformant_region(void *data, - struct tizen_policy *tizen_policy, - struct wl_surface *surface, - uint32_t conformant_part, - uint32_t state, - int32_t x, int32_t y, int32_t w, int32_t h, - uint32_t serial) -{ - ; // nothing to do. -} - -static const struct tizen_policy_listener _tizen_policy_listener = { - _wl_cb_conformant, - _wl_cb_conformant_area, - _wl_cb_notification_done, - _wl_cb_transient_for_done, - _wl_cb_scr_mode_done, - _wl_cb_iconify_state_changed, - _wl_cb_supported_aux_hints, - _wl_cb_allowed_aux_hint, - _wl_cb_aux_message, - _wl_cb_conformant_region, -}; - static void __wl_listener_cb(void *data, struct wl_registry *reg, uint32_t id, const char *interface, uint32_t ver) { @@ -215,9 +112,6 @@ static void __wl_listener_cb(void *data, struct wl_registry *reg, if (!tz_policy) tz_policy = wl_registry_bind(reg, id, &tizen_policy_interface, 7); - if (tz_policy) { - tizen_policy_add_listener(tz_policy, &_tizen_policy_listener, dsp); - } } } -- 2.7.4