Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(336)

Unified Diff: content/browser/bluetooth/bluetooth_allowed_devices_map.cc

Issue 2554253002: bluetooth: web: Rename Blacklist to Blocklist (Closed)
Patch Set: Created 4 years ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « content/browser/BUILD.gn ('k') | content/browser/bluetooth/bluetooth_blacklist.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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 7fd80f93a3d7b10662e499dca4addbd1c23ed0b6..df55b0320087ae479c3eb50fb988ebb7ffa29e86 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;
@@ -135,7 +135,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;
}
« no previous file with comments | « content/browser/BUILD.gn ('k') | content/browser/bluetooth/bluetooth_blacklist.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698