summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJackLivio <jack@livio.io>2018-06-15 15:08:21 -0400
committerJackLivio <jack@livio.io>2018-06-15 15:08:21 -0400
commit9af76249783a92cb0366dd4c8c569839d13f38e0 (patch)
tree7a13e59772d05e7e4d12f6e603924b4b6b19cb40
parent2b6748ee77e14059b5c72c56de35cf3c42f79911 (diff)
downloadsdl_core-9af76249783a92cb0366dd4c8c569839d13f38e0.tar.gz
Style Fix
-rw-r--r--src/components/application_manager/src/policies/policy_handler.cc12
1 files changed, 6 insertions, 6 deletions
diff --git a/src/components/application_manager/src/policies/policy_handler.cc b/src/components/application_manager/src/policies/policy_handler.cc
index 4d1805d2a5..67658c2809 100644
--- a/src/components/application_manager/src/policies/policy_handler.cc
+++ b/src/components/application_manager/src/policies/policy_handler.cc
@@ -1250,12 +1250,12 @@ void PolicyHandler::OnAllowSDLFunctionalityNotification(
if (is_allowed) {
// Send HMI status notification to mobile
// Put application in full
- AudioStreamingState::eType audio_state = app->IsAudioApplication()
- ? AudioStreamingState::AUDIBLE
- : AudioStreamingState::NOT_AUDIBLE;
- VideoStreamingState::eType video_state = app->IsVideoApplication()
- ? VideoStreamingState::STREAMABLE
- : VideoStreamingState::NOT_STREAMABLE;
+ AudioStreamingState::eType audio_state =
+ app->IsAudioApplication() ? AudioStreamingState::AUDIBLE
+ : AudioStreamingState::NOT_AUDIBLE;
+ VideoStreamingState::eType video_state =
+ app->IsVideoApplication() ? VideoStreamingState::STREAMABLE
+ : VideoStreamingState::NOT_STREAMABLE;
application_manager_.state_controller().SetRegularState(
app, mobile_apis::HMILevel::HMI_FULL, audio_state, video_state, true);