summaryrefslogtreecommitdiff
path: root/src/components
diff options
context:
space:
mode:
Diffstat (limited to 'src/components')
-rw-r--r--src/components/application_manager/include/application_manager/message_helper.h12
-rw-r--r--src/components/application_manager/test/mock_message_helper.cc3
2 files changed, 7 insertions, 8 deletions
diff --git a/src/components/application_manager/include/application_manager/message_helper.h b/src/components/application_manager/include/application_manager/message_helper.h
index bfdadd40c9..8e59a7307f 100644
--- a/src/components/application_manager/include/application_manager/message_helper.h
+++ b/src/components/application_manager/include/application_manager/message_helper.h
@@ -635,22 +635,20 @@ class MessageHelper {
smart_objects::SmartObject& image,
ApplicationConstSharedPtr app,
ApplicationManager& app_mngr);
-
+
/**
* @brief Stores whether a choice set has correct VRCommands
* MIXED means some choices have VRCommands and others don't
* ALL means all do, NONE means none do
- */
- enum ChoiceSetVRCommandsStatus {
- MIXED, ALL, NONE
- };
+ */
+ enum ChoiceSetVRCommandsStatus { MIXED, ALL, NONE };
-
/**
* @brief Check whether each choice in the set has the vrCommands parameter
* vrCommands is an all-or-none deal
* @param choice set to check
- * @return a ChoiceSetVRCommandsStatus representing the state of the choice set
+ * @return a ChoiceSetVRCommandsStatus representing the state of the choice
+ * set
*/
static ChoiceSetVRCommandsStatus CheckChoiceSetVRCommands(
const smart_objects::SmartObject& choice_set);
diff --git a/src/components/application_manager/test/mock_message_helper.cc b/src/components/application_manager/test/mock_message_helper.cc
index 8ab70130c2..0850361a20 100644
--- a/src/components/application_manager/test/mock_message_helper.cc
+++ b/src/components/application_manager/test/mock_message_helper.cc
@@ -343,7 +343,8 @@ mobile_apis::Result::eType MessageHelper::VerifyImage(
MessageHelper::ChoiceSetVRCommandsStatus
MessageHelper::CheckChoiceSetVRCommands(
const smart_objects::SmartObject& choice_set) {
- return MockMessageHelper::message_helper_mock()->CheckChoiceSetVRCommands(choice_set);
+ return MockMessageHelper::message_helper_mock()->CheckChoiceSetVRCommands(
+ choice_set);
}
mobile_apis::Result::eType MessageHelper::VerifyImageFiles(