| OLD | NEW |
| 1 // Copyright 2017 The Chromium Authors. All rights reserved. | 1 // Copyright 2017 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 #ifndef DEVICE_BLUETOOTH_TEST_FAKE_CENTRAL_H_ | 4 #ifndef DEVICE_BLUETOOTH_TEST_FAKE_CENTRAL_H_ |
| 5 #define DEVICE_BLUETOOTH_TEST_FAKE_CENTRAL_H_ | 5 #define DEVICE_BLUETOOTH_TEST_FAKE_CENTRAL_H_ |
| 6 | 6 |
| 7 #include <memory> | 7 #include <memory> |
| 8 #include <string> | 8 #include <string> |
| 9 | 9 |
| 10 #include "base/compiler_specific.h" | 10 #include "base/compiler_specific.h" |
| 11 #include "device/bluetooth/bluetooth_adapter.h" | 11 #include "device/bluetooth/bluetooth_adapter.h" |
| 12 #include "device/bluetooth/public/interfaces/test/fake_bluetooth.mojom.h" | 12 #include "device/bluetooth/public/interfaces/test/fake_bluetooth.mojom.h" |
| 13 #include "mojo/public/cpp/bindings/binding.h" | 13 #include "mojo/public/cpp/bindings/binding.h" |
| 14 | 14 |
| 15 namespace bluetooth { | 15 namespace bluetooth { |
| 16 | 16 |
| 17 // Implementation of FakeCentral in | 17 // Implementation of FakeCentral in |
| 18 // src/device/bluetooth/public/interfaces/test/fake_bluetooth.mojom. | 18 // src/device/bluetooth/public/interfaces/test/fake_bluetooth.mojom. |
| 19 // Implemented on top of the C++ device/bluetooth API, mainly | 19 // Implemented on top of the C++ device/bluetooth API, mainly |
| 20 // device/bluetooth/bluetooth_adapter.h. | 20 // device/bluetooth/bluetooth_adapter.h. |
| 21 class FakeCentral : NON_EXPORTED_BASE(public mojom::FakeCentral), | 21 class FakeCentral : NON_EXPORTED_BASE(public mojom::FakeCentral), |
| 22 public device::BluetoothAdapter { | 22 public device::BluetoothAdapter { |
| 23 public: | 23 public: |
| 24 FakeCentral(mojom::CentralState state, mojom::FakeCentralRequest request); | 24 FakeCentral(mojom::CentralState state, mojom::FakeCentralRequest request); |
| 25 | 25 |
| 26 // FakeCentral overrides: | 26 // FakeCentral overrides: |
| 27 void SimulatePreconnectedPeripheral( | 27 void SimulatePreconnectedPeripheral( |
| 28 const std::string& address, | 28 const std::string& address, |
| 29 const std::string& name, | 29 const std::string& name, |
| 30 const std::vector<device::BluetoothUUID>& known_service_uuids, |
| 30 SimulatePreconnectedPeripheralCallback callback) override; | 31 SimulatePreconnectedPeripheralCallback callback) override; |
| 31 | 32 |
| 32 // BluetoothAdapter overrides: | 33 // BluetoothAdapter overrides: |
| 33 std::string GetAddress() const override; | 34 std::string GetAddress() const override; |
| 34 std::string GetName() const override; | 35 std::string GetName() const override; |
| 35 void SetName(const std::string& name, | 36 void SetName(const std::string& name, |
| 36 const base::Closure& callback, | 37 const base::Closure& callback, |
| 37 const ErrorCallback& error_callback) override; | 38 const ErrorCallback& error_callback) override; |
| 38 bool IsInitialized() const override; | 39 bool IsInitialized() const override; |
| 39 bool IsPresent() const override; | 40 bool IsPresent() const override; |
| (...skipping 48 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 88 private: | 89 private: |
| 89 ~FakeCentral() override; | 90 ~FakeCentral() override; |
| 90 | 91 |
| 91 mojom::CentralState state_; | 92 mojom::CentralState state_; |
| 92 mojo::Binding<mojom::FakeCentral> binding_; | 93 mojo::Binding<mojom::FakeCentral> binding_; |
| 93 }; | 94 }; |
| 94 | 95 |
| 95 } // namespace bluetooth | 96 } // namespace bluetooth |
| 96 | 97 |
| 97 #endif // DEVICE_BLUETOOTH_TEST_FAKE_CENTRAL_H_ | 98 #endif // DEVICE_BLUETOOTH_TEST_FAKE_CENTRAL_H_ |
| OLD | NEW |