diff options
Diffstat (limited to 'chrome/browser/chromeos/power/peripheral_battery_observer.cc')
-rw-r--r-- | chrome/browser/chromeos/power/peripheral_battery_observer.cc | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/chrome/browser/chromeos/power/peripheral_battery_observer.cc b/chrome/browser/chromeos/power/peripheral_battery_observer.cc index 32438ae2..22089fa 100644 --- a/chrome/browser/chromeos/power/peripheral_battery_observer.cc +++ b/chrome/browser/chromeos/power/peripheral_battery_observer.cc @@ -66,7 +66,7 @@ std::string ExtractBluetoothAddress(const std::string& path) { std::vector<std::string> result; base::SplitString(reverse_address, ':', &result); std::reverse(result.begin(), result.end()); - std::string address = JoinString(result, ':'); + std::string address = base::JoinString(result, ":"); return address; } |