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

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

Issue 1926623002: bluetooth: Remove the device info and device class fields from BluetoothDevice. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: 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
Index: content/shell/browser/layout_test/layout_test_bluetooth_adapter_provider.cc
diff --git a/content/shell/browser/layout_test/layout_test_bluetooth_adapter_provider.cc b/content/shell/browser/layout_test/layout_test_bluetooth_adapter_provider.cc
index e0319a58829e3a80ceec86cd1b80d5ace90b054d..3bbf1692ca919e55c2c4a05ada02c5c72ab54e0c 100644
--- a/content/shell/browser/layout_test/layout_test_bluetooth_adapter_provider.cc
+++ b/content/shell/browser/layout_test/layout_test_bluetooth_adapter_provider.cc
@@ -607,12 +607,6 @@ LayoutTestBluetoothAdapterProvider::GetBaseDevice(
.WillByDefault(
Invoke(device.get(), &MockBluetoothDevice::GetMockService));
- ON_CALL(*device, GetVendorIDSource())
- .WillByDefault(Return(BluetoothDevice::VENDOR_ID_BLUETOOTH));
- ON_CALL(*device, GetVendorID()).WillByDefault(Return(0xFFFF));
- ON_CALL(*device, GetProductID()).WillByDefault(Return(1));
- ON_CALL(*device, GetDeviceID()).WillByDefault(Return(2));
-
return device;
}

Powered by Google App Engine
This is Rietveld 408576698