summaryrefslogtreecommitdiff
path: root/src/components/application_manager/src/rpc_handler_impl.cc
diff options
context:
space:
mode:
authorIra Lytvynenko <ILytvynenko@luxoft.com>2018-02-08 13:51:15 +0200
committerIra Lytvynenko (GitHub) <ILytvynenko@luxoft.com>2018-06-26 12:01:43 +0300
commitc25d13465f7e0984f217a9f6c50d7c88c446eaf4 (patch)
treeb9924cc8d895f76a9d1b5fbc732e3c9da2e7a660 /src/components/application_manager/src/rpc_handler_impl.cc
parent691e6018cf1a09eb6aeb5f2c4fa4b93bc3ffb429 (diff)
downloadsdl_core-c25d13465f7e0984f217a9f6c50d7c88c446eaf4.tar.gz
Load plugins in app manager, init plugin with params
cory library to install dir Fix build Fix header guards Fix namespaces Fix build
Diffstat (limited to 'src/components/application_manager/src/rpc_handler_impl.cc')
-rw-r--r--src/components/application_manager/src/rpc_handler_impl.cc13
1 files changed, 0 insertions, 13 deletions
diff --git a/src/components/application_manager/src/rpc_handler_impl.cc b/src/components/application_manager/src/rpc_handler_impl.cc
index 251373a568..f971e911bb 100644
--- a/src/components/application_manager/src/rpc_handler_impl.cc
+++ b/src/components/application_manager/src/rpc_handler_impl.cc
@@ -145,19 +145,6 @@ void RPCHandlerImpl::Handle(const impl::MessageFromHmi message) {
LOG4CXX_ERROR(logger_, "Null-pointer message received.");
return;
}
-
-#ifdef SDL_REMOTE_CONTROL
- if (app_manager_.GetPluginManager().IsHMIMessageForPlugin(message)) {
- functional_modules::ProcessResult result =
- app_manager_.GetPluginManager().ProcessHMIMessage(message);
- if (functional_modules::ProcessResult::PROCESSED == result ||
- functional_modules::ProcessResult::FAILED == result) {
- LOG4CXX_INFO(logger_, "Message is processed by plugin.");
- return;
- }
- }
-#endif
-
ProcessMessageFromHMI(message);
}