diff options
Diffstat (limited to 'system/main/shim/metrics_api.cc')
-rw-r--r-- | system/main/shim/metrics_api.cc | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/system/main/shim/metrics_api.cc b/system/main/shim/metrics_api.cc index 74784f879c..99832be023 100644 --- a/system/main/shim/metrics_api.cc +++ b/system/main/shim/metrics_api.cc @@ -128,13 +128,14 @@ void LogMetricSocketConnectionState( void LogMetricManufacturerInfo( const RawAddress& raw_address, + android::bluetooth::AddressTypeEnum address_type, android::bluetooth::DeviceInfoSrcEnum source_type, const std::string& source_name, const std::string& manufacturer, const std::string& model, const std::string& hardware_version, const std::string& software_version) { Address address = bluetooth::ToGdAddress(raw_address); - bluetooth::os::LogMetricManufacturerInfo(address, source_type, source_name, - manufacturer, model, + bluetooth::os::LogMetricManufacturerInfo(address, address_type, source_type, + source_name, manufacturer, model, hardware_version, software_version); } |