| OLD | NEW |
| 1 // Copyright 2015 The Chromium Authors. All rights reserved. | 1 // Copyright 2015 The Chromium Authors. All rights reserved. |
| 2 // Use of this source code is governed by a BSD-style license that can be | 2 // Use of this source code is governed by a BSD-style license that can be |
| 3 // found in the LICENSE file. | 3 // found in the LICENSE file. |
| 4 | 4 |
| 5 #include "device/bluetooth/test/bluetooth_test.h" | 5 #include "device/bluetooth/test/bluetooth_test.h" |
| 6 | 6 |
| 7 #include "base/bind.h" | 7 #include "base/bind.h" |
| 8 #include "base/logging.h" | 8 #include "base/logging.h" |
| 9 #include "base/run_loop.h" | 9 #include "base/run_loop.h" |
| 10 #include "device/bluetooth/bluetooth_adapter.h" | 10 #include "device/bluetooth/bluetooth_adapter.h" |
| 11 | 11 |
| 12 namespace device { | 12 namespace device { |
| 13 | 13 |
| 14 const std::string BluetoothTestBase::kTestAdapterName = "FakeBluetoothAdapter"; | 14 const std::string BluetoothTestBase::kTestAdapterName = "FakeBluetoothAdapter"; |
| 15 const std::string BluetoothTestBase::kTestAdapterAddress = "A1:B2:C3:D4:E5:F6"; | 15 const std::string BluetoothTestBase::kTestAdapterAddress = "A1:B2:C3:D4:E5:F6"; |
| 16 | 16 |
| 17 const std::string BluetoothTestBase::kTestDeviceName = "FakeBluetoothDevice"; |
| 18 const std::string BluetoothTestBase::kTestDeviceNameEmpty = ""; |
| 19 |
| 20 const std::string BluetoothTestBase::kTestDeviceAddress1 = "01:00:00:90:1E:BE"; |
| 21 const std::string BluetoothTestBase::kTestDeviceAddress2 = "02:00:00:8B:74:63"; |
| 22 |
| 23 const std::string BluetoothTestBase::kTestUUIDGenericAccess = "1800"; |
| 24 const std::string BluetoothTestBase::kTestUUIDGenericAttribute = "1801"; |
| 25 const std::string BluetoothTestBase::kTestUUIDImmediateAlert = "1802"; |
| 26 const std::string BluetoothTestBase::kTestUUIDLinkLoss = "1803"; |
| 27 |
| 17 BluetoothTestBase::BluetoothTestBase() { | 28 BluetoothTestBase::BluetoothTestBase() { |
| 18 } | 29 } |
| 19 | 30 |
| 20 BluetoothTestBase::~BluetoothTestBase() { | 31 BluetoothTestBase::~BluetoothTestBase() { |
| 21 } | 32 } |
| 22 | 33 |
| 23 void BluetoothTestBase::Callback() { | 34 void BluetoothTestBase::Callback() { |
| 24 ++callback_count_; | 35 ++callback_count_; |
| 25 } | 36 } |
| 26 | 37 |
| (...skipping 15 matching lines...) Expand all Loading... |
| 42 BluetoothTestBase::GetDiscoverySessionCallback() { | 53 BluetoothTestBase::GetDiscoverySessionCallback() { |
| 43 return base::Bind(&BluetoothTestBase::DiscoverySessionCallback, | 54 return base::Bind(&BluetoothTestBase::DiscoverySessionCallback, |
| 44 base::Unretained(this)); | 55 base::Unretained(this)); |
| 45 } | 56 } |
| 46 | 57 |
| 47 BluetoothAdapter::ErrorCallback BluetoothTestBase::GetErrorCallback() { | 58 BluetoothAdapter::ErrorCallback BluetoothTestBase::GetErrorCallback() { |
| 48 return base::Bind(&BluetoothTestBase::ErrorCallback, base::Unretained(this)); | 59 return base::Bind(&BluetoothTestBase::ErrorCallback, base::Unretained(this)); |
| 49 } | 60 } |
| 50 | 61 |
| 51 } // namespace device | 62 } // namespace device |
| OLD | NEW |