summaryrefslogtreecommitdiff
path: root/src/components/transport_manager/include/transport_manager/transport_adapter/transport_adapter_impl.h
diff options
context:
space:
mode:
authorSergey Levchenko (GitHub) <slevchenko.work@gmail.com>2016-08-10 17:33:38 +0300
committerAnton Hrytsevich (GitHub) <AGritsevich@users.noreply.github.com>2016-08-10 17:33:38 +0300
commit834649fad910ca71f9f2ceba6a851cea0fecf6ed (patch)
treeb1e059aa114193fb26027cfa76e31a022a90002f /src/components/transport_manager/include/transport_manager/transport_adapter/transport_adapter_impl.h
parent5b98543e13623b6a7c11b8551c0cc6169441776b (diff)
downloadsdl_core-834649fad910ca71f9f2ceba6a851cea0fecf6ed.tar.gz
Complete covering of AppLaunch functionality by Unit Tests (#748)
Has been covered: - `ConnectionHandlerImpl::RunAppOnDevice`; - `TransportManagerImpl::RunAppOnDevice`; - `TransportAdapterImpl::RunAppOnDevice`; - `ResumeCtrlImpl::GetSavedAppHmiLevel`. Related to: APPLINK-24895
Diffstat (limited to 'src/components/transport_manager/include/transport_manager/transport_adapter/transport_adapter_impl.h')
-rw-r--r--src/components/transport_manager/include/transport_manager/transport_adapter/transport_adapter_impl.h24
1 files changed, 12 insertions, 12 deletions
diff --git a/src/components/transport_manager/include/transport_manager/transport_adapter/transport_adapter_impl.h b/src/components/transport_manager/include/transport_manager/transport_adapter/transport_adapter_impl.h
index 3e91c6f246..d4c97d5233 100644
--- a/src/components/transport_manager/include/transport_manager/transport_adapter/transport_adapter_impl.h
+++ b/src/components/transport_manager/include/transport_manager/transport_adapter/transport_adapter_impl.h
@@ -414,6 +414,18 @@ class TransportAdapterImpl : public TransportAdapter,
*/
std::string GetConnectionType() const OVERRIDE;
+ /**
+ * @brief RunAppOnDevice allows run specific application on the certain
+ *device.
+ *
+ * @param device_handle device identifier to run application on.
+ *
+ * @param bundle_id application id also known as bundle id on some devices to
+ *run.
+ */
+ void RunAppOnDevice(const DeviceUID& device_uid,
+ const std::string& bundle_id) OVERRIDE;
+
#ifdef TELEMETRY_MONITOR
/**
* @brief Setup observer for time metric.
@@ -479,18 +491,6 @@ class TransportAdapterImpl : public TransportAdapter,
TransportAdapter::Error ConnectDevice(DeviceSptr device);
/**
- * @brief RunAppOnDevice allows run specific application on the certain
- *device.
- *
- * @param device_handle device identifier to run application on.
- *
- * @param bundle_id application id alsow known as bundle id on some devices to
- *run.
- */
- void RunAppOnDevice(const DeviceUID& device_uid,
- const std::string& bundle_id) OVERRIDE;
-
- /**
* @brief Remove specified device
* @param device_handle Device unique identifier.
*/