// Copyright 2020 The Chromium Authors // Use of this source code is governed by a BSD-style license that can be // found in the LICENSE file. #include "device/bluetooth/public/cpp/bluetooth_address.h" #include "base/strings/string_number_conversions.h" #include "base/strings/stringprintf.h" namespace device { bool ParseBluetoothAddress(std::string_view input, base::span<uint8_t> output) { … } std::string CanonicalizeBluetoothAddress(std::string_view address) { … } std::string CanonicalizeBluetoothAddress( const std::array<uint8_t, 6>& address_bytes) { … } } // namespace device