| Index: content/browser/bluetooth/bluetooth_allowed_devices_map.cc
|
| diff --git a/content/browser/bluetooth/bluetooth_allowed_devices_map.cc b/content/browser/bluetooth/bluetooth_allowed_devices_map.cc
|
| index a340edcc08403824698a00bceb21d6e7b1a4933c..ba0b46aa278d47f509f580ff18f74e29bb9c8604 100644
|
| --- a/content/browser/bluetooth/bluetooth_allowed_devices_map.cc
|
| +++ b/content/browser/bluetooth/bluetooth_allowed_devices_map.cc
|
| @@ -11,7 +11,7 @@
|
| #include "base/optional.h"
|
| #include "base/stl_util.h"
|
| #include "base/strings/string_util.h"
|
| -#include "content/browser/bluetooth/bluetooth_blacklist.h"
|
| +#include "content/browser/bluetooth/bluetooth_blocklist.h"
|
| #include "content/common/bluetooth/web_bluetooth_device_id.h"
|
|
|
| using device::BluetoothUUID;
|
| @@ -119,7 +119,7 @@ bool BluetoothAllowedDevicesMap::IsOriginAllowedToAccessService(
|
| const url::Origin& origin,
|
| const WebBluetoothDeviceId& device_id,
|
| const BluetoothUUID& service_uuid) const {
|
| - if (BluetoothBlacklist::Get().IsExcluded(service_uuid)) {
|
| + if (BluetoothBlocklist::Get().IsExcluded(service_uuid)) {
|
| return false;
|
| }
|
|
|
|
|