From 795eb91d057b491011594162b402543c525d6545 Mon Sep 17 00:00:00 2001 From: Marius Vlad Date: Mon, 20 Apr 2020 19:37:53 +0300 Subject: [PATCH 1/1] policy-default: Install default policy for deactivate request Bug-AGL: SPEC-3269 Signed-off-by: Marius Vlad Change-Id: I9ea70e6f49eda0a475a185fc037cb2c86b2b2890 --- src/policy-default.c | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/src/policy-default.c b/src/policy-default.c index 3363528..16c8b2d 100644 --- a/src/policy-default.c +++ b/src/policy-default.c @@ -57,6 +57,13 @@ ivi_policy_default_surface_activate(struct ivi_surface *surf, void *user_data) return true; } +static bool +ivi_policy_default_surface_deactivate(struct ivi_surface *surf, void *user_data) +{ + /* verify that the surface should be de-activated to */ + return true; +} + static bool ivi_policy_default_surface_activate_default(struct ivi_surface *surf, void *user_data) { @@ -96,6 +103,7 @@ static const struct ivi_policy_api policy_api = { .surface_create = ivi_policy_default_surface_create, .surface_commited = ivi_policy_default_surface_commmited, .surface_activate = ivi_policy_default_surface_activate, + .surface_deactivate = ivi_policy_default_surface_deactivate, .surface_activate_by_default = ivi_policy_default_surface_activate_default, .policy_rule_allow_to_add = ivi_policy_default_allow_to_add, .policy_rule_try_event = ivi_policy_default_try_event, -- 2.16.6