summaryrefslogtreecommitdiff
path: root/src/components/application_manager/src/commands/hmi/on_ui_touch_event_notification.cc
diff options
context:
space:
mode:
Diffstat (limited to 'src/components/application_manager/src/commands/hmi/on_ui_touch_event_notification.cc')
-rw-r--r--src/components/application_manager/src/commands/hmi/on_ui_touch_event_notification.cc12
1 files changed, 5 insertions, 7 deletions
diff --git a/src/components/application_manager/src/commands/hmi/on_ui_touch_event_notification.cc b/src/components/application_manager/src/commands/hmi/on_ui_touch_event_notification.cc
index 00e0e4d2c6..7709af8720 100644
--- a/src/components/application_manager/src/commands/hmi/on_ui_touch_event_notification.cc
+++ b/src/components/application_manager/src/commands/hmi/on_ui_touch_event_notification.cc
@@ -40,18 +40,17 @@ namespace commands {
namespace hmi {
OnUITouchEventNotification::OnUITouchEventNotification(
- const MessageSharedPtr& message) : NotificationFromHMI(message) {
-}
+ const MessageSharedPtr& message, ApplicationManager& application_manager)
+ : NotificationFromHMI(message, application_manager) {}
-OnUITouchEventNotification::~OnUITouchEventNotification() {
-}
+OnUITouchEventNotification::~OnUITouchEventNotification() {}
void OnUITouchEventNotification::Run() {
LOG4CXX_AUTO_TRACE(logger_);
- //prepare SmartObject for mobile factory
+ // prepare SmartObject for mobile factory
(*message_)[strings::params][strings::function_id] =
- mobile_apis::FunctionID::OnTouchEventID;
+ mobile_apis::FunctionID::OnTouchEventID;
SendNotificationToMobile(message_);
}
@@ -60,4 +59,3 @@ void OnUITouchEventNotification::Run() {
} // namespace commands
} // namespace application_manager
-