| 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);
|
|
|