From f73c5f5ff5cd4b424eed1a757c7bc8d3e34ec0e9 Mon Sep 17 00:00:00 2001 From: Yuta Doi Date: Fri, 11 May 2018 10:09:24 +0900 Subject: The role "video" can be shown in split area for ALS and the role "restriction" can use the areas other than "restriction.split.sub" Change-Id: I5aab163409cf5284b876dc9e44102ee620344472 Signed-off-by: Yuta Doi --- src/policy_manager/policy_manager.cpp | 16 ++++++++++++++++ 1 file changed, 16 insertions(+) (limited to 'src/policy_manager/policy_manager.cpp') diff --git a/src/policy_manager/policy_manager.cpp b/src/policy_manager/policy_manager.cpp index 3ee9459..8b902b2 100644 --- a/src/policy_manager/policy_manager.cpp +++ b/src/policy_manager/policy_manager.cpp @@ -179,6 +179,10 @@ int PolicyManager::checkPolicy(json_object* json_in, json_object** json_out) { // }, json_object* json_layer = json_object_new_array(); json_object* json_tmp = json_object_new_object(); + HMI_DEBUG("wm", "on_screen state (is_changed:%d state:%d:%s)", + this->current_state_.layer.on_screen.is_changed, + this->current_state_.layer.on_screen.state, + stm::gStmLayoutNo2Name[this->current_state_.layer.on_screen.state]); this->addStateToJson("on_screen", this->current_state_.layer.on_screen.is_changed, stm::gStmLayoutNo2Name[this->current_state_.layer.on_screen.state], @@ -191,6 +195,10 @@ int PolicyManager::checkPolicy(json_object* json_in, json_object** json_out) { // "state": // } // }, + HMI_DEBUG("wm", "restriction state (is_changed:%d state:%d:%s)", + this->current_state_.layer.restriction.is_changed, + this->current_state_.layer.restriction.state, + stm::gStmLayoutNo2Name[this->current_state_.layer.restriction.state]); json_tmp = json_object_new_object(); this->addStateToJson("restriction", this->current_state_.layer.restriction.is_changed, @@ -204,6 +212,10 @@ int PolicyManager::checkPolicy(json_object* json_in, json_object** json_out) { // "state": // } // }, + HMI_DEBUG("wm", "apps state (is_changed:%d state:%d:%s)", + this->current_state_.layer.apps.is_changed, + this->current_state_.layer.apps.state, + stm::gStmLayoutNo2Name[this->current_state_.layer.apps.state]); json_tmp = json_object_new_object(); this->addStateToJson("apps", this->current_state_.layer.apps.is_changed, @@ -219,6 +231,10 @@ int PolicyManager::checkPolicy(json_object* json_in, json_object** json_out) { // }, // ] // } + HMI_DEBUG("wm", "homescreen state (is_changed:%d state:%d:%s)", + this->current_state_.layer.homescreen.is_changed, + this->current_state_.layer.homescreen.state, + stm::gStmLayoutNo2Name[this->current_state_.layer.homescreen.state]); json_tmp = json_object_new_object(); this->addStateToJson("homescreen", this->current_state_.layer.homescreen.is_changed, -- cgit 1.2.3-korg