summaryrefslogtreecommitdiff
path: root/src/components/application_manager/src/rpc_service_impl.cc
diff options
context:
space:
mode:
authorjacobkeeler <jacob.keeler@livioradio.com>2018-08-29 15:12:55 -0400
committerjacobkeeler <jacob.keeler@livioradio.com>2018-08-29 15:12:55 -0400
commit4746c58bf30b41f0a121a7b5dbc177aa2a28be02 (patch)
treee03d518826b79eba69e652e77a1da3d33a741f25 /src/components/application_manager/src/rpc_service_impl.cc
parent09e4e684708ad5ab2544c72745516e9fe481ba0b (diff)
downloadsdl_core-4746c58bf30b41f0a121a7b5dbc177aa2a28be02.tar.gz
Fix namespace case structure in projectfix/namespace_case
Diffstat (limited to 'src/components/application_manager/src/rpc_service_impl.cc')
-rw-r--r--src/components/application_manager/src/rpc_service_impl.cc8
1 files changed, 4 insertions, 4 deletions
diff --git a/src/components/application_manager/src/rpc_service_impl.cc b/src/components/application_manager/src/rpc_service_impl.cc
index bdd6c8e0c2..217af091b5 100644
--- a/src/components/application_manager/src/rpc_service_impl.cc
+++ b/src/components/application_manager/src/rpc_service_impl.cc
@@ -36,8 +36,8 @@ namespace application_manager {
namespace rpc_service {
CREATE_LOGGERPTR_LOCAL(logger_, "RPCServiceImpl")
-namespace formatters = NsSmartDeviceLink::NsJSONHandler::Formatters;
-namespace jhs = NsSmartDeviceLink::NsJSONHandler::strings;
+namespace formatters = ns_smart_device_link::ns_json_handler::formatters;
+namespace jhs = ns_smart_device_link::ns_json_handler::strings;
RPCServiceImpl::RPCServiceImpl(
ApplicationManager& app_manager,
@@ -380,7 +380,7 @@ void RPCServiceImpl::SendMessageToMobile(
LOG4CXX_ERROR(logger_, "No application associated with connection key");
if (is_result_code_exists &&
((*message)[strings::msg_params][strings::result_code] ==
- NsSmartDeviceLinkRPC::V1::Result::UNSUPPORTED_VERSION)) {
+ ns_smart_device_link_rpc::V1::Result::UNSUPPORTED_VERSION)) {
(*message)[strings::params][strings::protocol_version] =
protocol_handler::MajorProtocolVersion::PROTOCOL_VERSION_1;
} else {
@@ -518,7 +518,7 @@ void RPCServiceImpl::set_hmi_message_handler(
}
bool RPCServiceImpl::ConvertSOtoMessage(
- const NsSmartDeviceLink::NsSmartObjects::SmartObject& message,
+ const ns_smart_device_link::ns_smart_objects::SmartObject& message,
Message& output) {
LOG4CXX_AUTO_TRACE(logger_);