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

Unified Diff: third_party/WebKit/Source/modules/bluetooth/testing/clusterfuzz/wbt_fakes.py

Issue 2615273002: Bump Bluetooth max filter name length from 29 bytes to 240 bytes (Closed)
Patch Set: Correct fake test value Created 3 years, 11 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 | « third_party/WebKit/Source/modules/bluetooth/Bluetooth.cpp ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: third_party/WebKit/Source/modules/bluetooth/testing/clusterfuzz/wbt_fakes.py
diff --git a/third_party/WebKit/Source/modules/bluetooth/testing/clusterfuzz/wbt_fakes.py b/third_party/WebKit/Source/modules/bluetooth/testing/clusterfuzz/wbt_fakes.py
index ec8781001e334156a4c534c4cc2c4b7d51eeed1c..530c2d486cfdab67946ab695f794e529a5d8e3f2 100644
--- a/third_party/WebKit/Source/modules/bluetooth/testing/clusterfuzz/wbt_fakes.py
+++ b/third_party/WebKit/Source/modules/bluetooth/testing/clusterfuzz/wbt_fakes.py
@@ -34,6 +34,7 @@ ADVERTISED_SERVICES = [
'heart_rate',
'human_interface_device',
'device_information',
+ 'a_device_name_that_is_longer_than_29_bytes_but_shorter_than_240_bytes',
BLOCKLISTED_UUID,
CONNECTION_ERROR_UUIDS[0],
DISCONNECTION_UUID,
@@ -48,6 +49,7 @@ SERVICES = [
'generic_access',
'heart_rate',
'human_interface_device',
+ 'a_device_name_that_is_longer_than_29_bytes_but_shorter_than_240_bytes',
BLOCKLISTED_UUID,
DISCONNECTION_UUID,
GATT_ERROR_UUID,
@@ -90,6 +92,7 @@ ALL_ADAPTERS = [
'FailingConnectionsAdapter',
'FailingGATTOperationsAdapter',
'DelayedServicesDiscoveryAdapter',
+ 'DeviceNameLongerThan29BytesAdapter',
]
# List of fake adapters that include devices.
@@ -135,6 +138,10 @@ ADAPTERS_WITH_DEVICES = [
'DelayedServicesDiscoveryAdapter',
['generic_access', 'heart_rate'],
),
+ (
+ 'DeviceNameLongerThan29BytesAdapter',
+ ['a_device_name_that_is_longer_than_29_bytes_but_shorter_than_240_bytes'],
+ ),
]
# List of fake adapters with services.
« no previous file with comments | « third_party/WebKit/Source/modules/bluetooth/Bluetooth.cpp ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698