extensions::tizen_policy: Add empty implementation for tizen_policy by adding new... 86/71286/1
authorSeunghun Lee <shiin.lee@samsung.com>
Wed, 25 May 2016 02:25:52 +0000 (11:25 +0900)
committerSeunghun Lee <shiin.lee@samsung.com>
Wed, 25 May 2016 02:25:52 +0000 (11:25 +0900)
Change-Id: Id13885430285420a58ea786ab40b421cf8cdb931

src/lib/extensions/tizen_policy.c

index bf964bc314db74131e0c2bf749f6b39c19cd3a26..964fa4b6b5d7229e7f95943dc0ca49dd5cb4fa35 100644 (file)
@@ -412,6 +412,14 @@ _tzpol_iface_cb_subsurf_place_below_parent(struct wl_client *client, struct wl_r
    (void)subsurf;
 }
 
+static void
+_tzpol_iface_cb_subsurf_stand_alone_set(struct wl_client *client, struct wl_resource *res_tzpol, struct wl_resource *subsurf)
+{
+   (void)client;
+   (void)res_tzpol;
+   (void)subsurf;
+}
+
 static void
 _tzpol_iface_cb_subsurface_get(struct wl_client *client, struct wl_resource *res_tzpol, uint32_t id, struct wl_resource *surface, uint32_t parent_id)
 {
@@ -550,6 +558,7 @@ static const struct tizen_policy_interface _tzpol_iface =
    _tzpol_iface_cb_transient_for_unset,
    _tzpol_iface_cb_win_scrmode_set,
    _tzpol_iface_cb_subsurf_place_below_parent,
+   _tzpol_iface_cb_subsurf_stand_alone_set,
    _tzpol_iface_cb_subsurface_get,
    _tzpol_iface_cb_opaque_state_set,
    _tzpol_iface_cb_iconify,