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

Unified Diff: device/bluetooth/bluetooth_experimental_chromeos_unittest.cc

Issue 13872017: Bluetooth: gather usage metrics (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Fix DCHECK_EQ - compile error hidden by previous WebKit issues Created 7 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: device/bluetooth/bluetooth_experimental_chromeos_unittest.cc
diff --git a/device/bluetooth/bluetooth_experimental_chromeos_unittest.cc b/device/bluetooth/bluetooth_experimental_chromeos_unittest.cc
index 2f143690e0850f01c709b7a4a76f8a9d4f130399..649d52cf1b2423fa50af1234a98da2c7c01ddea8 100644
--- a/device/bluetooth/bluetooth_experimental_chromeos_unittest.cc
+++ b/device/bluetooth/bluetooth_experimental_chromeos_unittest.cc
@@ -764,6 +764,10 @@ TEST_F(BluetoothExperimentalChromeOSTest, DeviceProperties) {
ASSERT_EQ(2U, uuids.size());
EXPECT_EQ(uuids[0], "00001800-0000-1000-8000-00805f9b34fb");
EXPECT_EQ(uuids[1], "00001801-0000-1000-8000-00805f9b34fb");
+
+ EXPECT_EQ(0x05ac, devices[0]->GetVendorID());
+ EXPECT_EQ(0x030d, devices[0]->GetProductID());
+ EXPECT_EQ(0x0306, devices[0]->GetDeviceID());
}
TEST_F(BluetoothExperimentalChromeOSTest, DeviceClassChanged) {

Powered by Google App Engine
This is Rietveld 408576698