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

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

Issue 1866853002: Add the Nordic and TI firmware update services to the Bluetooth blacklist. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@lkcr
Patch Set: Update and move the updated date. Created 4 years, 8 months 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 | « no previous file | content/browser/bluetooth/bluetooth_blacklist_unittest.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: content/browser/bluetooth/bluetooth_blacklist.cc
diff --git a/content/browser/bluetooth/bluetooth_blacklist.cc b/content/browser/bluetooth/bluetooth_blacklist.cc
index 088848f420f44eb59d9288c4bfd30027f298ed1a..529d879e1067b2c06502b4d16e28f5ad16c3be99 100644
--- a/content/browser/bluetooth/bluetooth_blacklist.cc
+++ b/content/browser/bluetooth/bluetooth_blacklist.cc
@@ -136,10 +136,6 @@ BluetoothBlacklist::BluetoothBlacklist() {
void BluetoothBlacklist::PopulateWithDefaultValues() {
blacklisted_uuids_.clear();
- // Blacklist UUIDs updated 2016-02-12 from:
- // https://github.com/WebBluetoothCG/registries/blob/master/gatt_blacklist.txt
- // Short UUIDs are used for readability of this list.
- //
// Testing from Layout Tests Note:
//
// Random UUIDs for object & exclude permutations that do not exist in the
@@ -154,8 +150,15 @@ void BluetoothBlacklist::PopulateWithDefaultValues() {
// that match the specific permutations.
DCHECK(BluetoothUUID("00001800-0000-1000-8000-00805f9b34fb") ==
BluetoothUUID("1800"));
+
+ // Blacklist UUIDs updated 2016-04-07 from:
+ // https://github.com/WebBluetoothCG/registries/blob/master/gatt_blacklist.txt
+ // Short UUIDs are used for readability of this list.
+ //
// Services:
Add(BluetoothUUID("1812"), Value::EXCLUDE);
+ Add(BluetoothUUID("00001530-1212-efde-1523-785feabcd123"), Value::EXCLUDE);
+ Add(BluetoothUUID("f000ffc0-0451-4000-b000-000000000000"), Value::EXCLUDE);
// Characteristics:
Add(BluetoothUUID("2a02"), Value::EXCLUDE_WRITES);
Add(BluetoothUUID("2a03"), Value::EXCLUDE);
« no previous file with comments | « no previous file | content/browser/bluetooth/bluetooth_blacklist_unittest.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698