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

Unified Diff: content/shell/browser/layout_test/layout_test_bluetooth_adapter_provider.h

Issue 2727683003: bluetooth: Clean up connection errors (Closed)
Patch Set: merge Created 3 years, 9 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
Index: content/shell/browser/layout_test/layout_test_bluetooth_adapter_provider.h
diff --git a/content/shell/browser/layout_test/layout_test_bluetooth_adapter_provider.h b/content/shell/browser/layout_test/layout_test_bluetooth_adapter_provider.h
index 819a1988b197983f5eeab8037778722d0d39af1c..0de94f00a9ae781b21fd5a71164fadeae4af9023 100644
--- a/content/shell/browser/layout_test/layout_test_bluetooth_adapter_provider.h
+++ b/content/shell/browser/layout_test/layout_test_bluetooth_adapter_provider.h
@@ -482,36 +482,22 @@ class LayoutTestBluetoothAdapterProvider {
// they can be accessed by using different filters.
// See connectErrorUUID() declaration below.
// Internal Structure:
- // - UnconnectableDevice(BluetoothDevice::ERROR_UNKNOWN)
+ // - UnconnectableDevice(BluetoothDevice::ERROR_AUTH_CANCELED)
// connectErrorUUID(0x0)
- // - UnconnectableDevice(BluetoothDevice::ERROR_INPROGRESS)
+ // - UnconnectableDevice(BluetoothDevice::ERROR_AUTH_FAILED)
// connectErrorUUID(0x1)
- // - UnconnectableDevice(BluetoothDevice::ERROR_FAILED)
+ // - UnconnectableDevice(BluetoothDevice::ERROR_AUTH_REJECTED)
// connectErrorUUID(0x2)
- // - UnconnectableDevice(BluetoothDevice::ERROR_AUTH_FAILED)
+ // - UnconnectableDevice(BluetoothDevice::ERROR_AUTH_TIMEOUT)
// connectErrorUUID(0x3)
- // - UnconnectableDevice(BluetoothDevice::ERROR_AUTH_CANCELED)
+ // - UnconnectableDevice(BluetoothDevice::ERROR_FAILED)
// connectErrorUUID(0x4)
- // - UnconnectableDevice(BluetoothDevice::ERROR_AUTH_REJECTED)
+ // - UnconnectableDevice(BluetoothDevice::ERROR_INPROGRESS)
// connectErrorUUID(0x5)
- // - UnconnectableDevice(BluetoothDevice::ERROR_AUTH_TIMEOUT)
+ // - UnconnectableDevice(BluetoothDevice::ERROR_UNKNOWN)
// connectErrorUUID(0x6)
// - UnconnectableDevice(BluetoothDevice::ERROR_UNSUPPORTED_DEVICE)
// connectErrorUUID(0x7)
- // - UnconnectableDevice(BluetoothDevice::ERROR_ATTRIBUTE_LENGTH_INVALID)
- // connectErrorUUID(0x8)
- // - UnconnectableDevice(BluetoothDevice::ERROR_CONNECTION_CONGESTED)
- // connectErrorUUID(0x9)
- // - UnconnectableDevice(BluetoothDevice::ERROR_INSUFFICIENT_ENCRYPTION)
- // connectErrorUUID(0xa)
- // - UnconnectableDevice(BluetoothDevice::ERROR_OFFSET_INVALID)
- // connectErrorUUID(0xb)
- // - UnconnectableDevice(BluetoothDevice::ERROR_READ_NOT_PERMITTED)
- // connectErrorUUID(0xc)
- // - UnconnectableDevice(BluetoothDevice::ERROR_REQUEST_NOT_SUPPORTED)
- // connectErrorUUID(0xd)
- // - UnconnectableDevice(BluetoothDevice::ERROR_WRITE_NOT_PERMITTED)
- // connectErrorUUID(0xe)
static scoped_refptr<testing::NiceMock<device::MockBluetoothAdapter>>
GetFailingConnectionsAdapter();
@@ -848,10 +834,6 @@ class LayoutTestBluetoothAdapterProvider {
// Helper functions:
- // DEPRECATED: This is a poor practice as it exposes the specific
- // enum values of this code base into the UUIDs used
- // by the test data. Prefer methods such as
- // connectErrorUUID.
// errorUUID(alias) returns a UUID with the top 32 bits of
// "00000000-97e5-4cd7-b9f1-f5a427670c59" replaced with the bits of |alias|.
// For example, errorUUID(0xDEADBEEF) returns
@@ -859,11 +841,6 @@ class LayoutTestBluetoothAdapterProvider {
// were generated as a type 4 (random) UUID.
static std::string errorUUID(uint32_t alias);
- // Returns a stable test data UUID associated with a given
- // BluetoothDevice::ConnectErrorCode.
- static device::BluetoothUUID connectErrorUUID(
- device::BluetoothDevice::ConnectErrorCode error_code);
-
// Function to turn an integer into an MAC address of the form
// XX:XX:XX:XX:XX:XX. For example makeMACAddress(0xdeadbeef)
// returns "00:00:DE:AD:BE:EF".

Powered by Google App Engine
This is Rietveld 408576698