From db816e3291c5d3bbe770d0678ee82f411b937efc Mon Sep 17 00:00:00 2001 From: BSolonenko Date: Mon, 12 Feb 2018 10:17:59 +0200 Subject: Refactoring all mobile commands. In all mobile command added rpc_service_, hmi_capabilities_ and policy_handler_ fields. Also changed all constructors. --- .../src/commands/mobile/end_audio_pass_thru_response.cc | 11 +++++++++-- 1 file changed, 9 insertions(+), 2 deletions(-) (limited to 'src/components/application_manager/rpc_plugins/sdl_rpc_plugin/src/commands/mobile/end_audio_pass_thru_response.cc') diff --git a/src/components/application_manager/rpc_plugins/sdl_rpc_plugin/src/commands/mobile/end_audio_pass_thru_response.cc b/src/components/application_manager/rpc_plugins/sdl_rpc_plugin/src/commands/mobile/end_audio_pass_thru_response.cc index 2953a169b0..ea74b100b0 100644 --- a/src/components/application_manager/rpc_plugins/sdl_rpc_plugin/src/commands/mobile/end_audio_pass_thru_response.cc +++ b/src/components/application_manager/rpc_plugins/sdl_rpc_plugin/src/commands/mobile/end_audio_pass_thru_response.cc @@ -41,8 +41,15 @@ namespace commands { EndAudioPassThruResponse::EndAudioPassThruResponse( const application_manager::commands::MessageSharedPtr& message, - ApplicationManager& application_manager) - : CommandResponseImpl(message, application_manager) {} + ApplicationManager& application_manager, + rpc_service::RPCService& rpc_service, + HMICapabilities& hmi_capabilities, + policy::PolicyHandlerInterface& policy_handler) + : CommandResponseImpl(message, + application_manager, + rpc_service, + hmi_capabilities, + policy_handler) {} EndAudioPassThruResponse::~EndAudioPassThruResponse() {} -- cgit v1.2.1