summaryrefslogtreecommitdiff
path: root/src/components/transport_manager/src/android/android_ipc_device.cc
diff options
context:
space:
mode:
Diffstat (limited to 'src/components/transport_manager/src/android/android_ipc_device.cc')
-rw-r--r--src/components/transport_manager/src/android/android_ipc_device.cc44
1 files changed, 22 insertions, 22 deletions
diff --git a/src/components/transport_manager/src/android/android_ipc_device.cc b/src/components/transport_manager/src/android/android_ipc_device.cc
index 4edd0dfd7f..26a4b60262 100644
--- a/src/components/transport_manager/src/android/android_ipc_device.cc
+++ b/src/components/transport_manager/src/android/android_ipc_device.cc
@@ -42,34 +42,34 @@ SDL_CREATE_LOG_VARIABLE("TransportManager")
const ApplicationHandle kDefaultAppHandle = 1u;
- /**
- * @brief Constructor.
- *
- * @param device_address Bluetooth address.
- * @param device_name Human-readable device name.
- **/
- AndroidIpcDevice::AndroidIpcDevice(const std::string& device_address,
- const char* device_name)
+/**
+ * @brief Constructor.
+ *
+ * @param device_address Bluetooth address.
+ * @param device_name Human-readable device name.
+ **/
+AndroidIpcDevice::AndroidIpcDevice(const std::string& device_address,
+ const char* device_name)
: Device(device_name, device_address)
, address_(device_address)
- , applications_list_({kDefaultAppHandle}) { }
+ , applications_list_({kDefaultAppHandle}) {}
- bool AndroidIpcDevice::IsSameAs(const Device* other) const {
- SDL_LOG_AUTO_TRACE();
- const AndroidIpcDevice* other_bluetooth_device =
+bool AndroidIpcDevice::IsSameAs(const Device* other) const {
+ SDL_LOG_AUTO_TRACE();
+ const AndroidIpcDevice* other_bluetooth_device =
dynamic_cast<const AndroidIpcDevice*>(other);
- if(other_bluetooth_device) {
- return other_bluetooth_device->address_ == address_;
- }
-
- SDL_LOG_TRACE("Compare with no Android Ipc device !");
-
- return false;
+ if (other_bluetooth_device) {
+ return other_bluetooth_device->address_ == address_;
}
- ApplicationList AndroidIpcDevice::GetApplicationList() const {
- return applications_list_;
- }
+ SDL_LOG_TRACE("Compare with no Android Ipc device !");
+ return false;
}
+
+ApplicationList AndroidIpcDevice::GetApplicationList() const {
+ return applications_list_;
}
+
+} // namespace transport_adapter
+} // namespace transport_manager