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

Unified Diff: device/bluetooth/test/bluetooth_test.cc

Issue 1246913006: Bringing 4 more BluetoothTest.* unit tests to Mac (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@scheibtest
Patch Set: Created 5 years, 5 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/test/bluetooth_test.cc
diff --git a/device/bluetooth/test/bluetooth_test.cc b/device/bluetooth/test/bluetooth_test.cc
index 6f66b7341651a0a5188f103311a1d170a3013755..f5999d15d812c9de4be3c9809487c879c81746b1 100644
--- a/device/bluetooth/test/bluetooth_test.cc
+++ b/device/bluetooth/test/bluetooth_test.cc
@@ -14,6 +14,14 @@ namespace device {
const std::string BluetoothTestBase::kTestAdapterName = "FakeBluetoothAdapter";
const std::string BluetoothTestBase::kTestAdapterAddress = "A1:B2:C3:D4:E5:F6";
+const std::string BluetoothTestBase::kTestDeviceName = "FakeBluetoothDevice";
+const std::string BluetoothTestBase::kTestDeviceNameEmpty = "";
+
+const std::string BluetoothTestBase::kTestUUID1 = "1800";
scheib 2015/07/23 18:15:25 These have better names, they're from https://deve
krstnmnlsn 2015/07/23 22:03:29 Done.
+const std::string BluetoothTestBase::kTestUUID2 = "1801";
+const std::string BluetoothTestBase::kTestUUID3 = "1802";
+const std::string BluetoothTestBase::kTestUUID4 = "1803";
+
BluetoothTestBase::BluetoothTestBase() {
}

Powered by Google App Engine
This is Rietveld 408576698