summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJackLivio <jack@livio.io>2018-06-15 15:10:48 -0400
committerGitHub <noreply@github.com>2018-06-15 15:10:48 -0400
commit1527db9a68a54e07891ccfad0c2532f0813704d7 (patch)
tree7a13e59772d05e7e4d12f6e603924b4b6b19cb40
parent2b6748ee77e14059b5c72c56de35cf3c42f79911 (diff)
parent9af76249783a92cb0366dd4c8c569839d13f38e0 (diff)
downloadsdl_core-1527db9a68a54e07891ccfad0c2532f0813704d7.tar.gz
Merge pull request #2271 from JackLivio/style_fix
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);