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" |
(...skipping 11 matching lines...) Expand all Loading... |
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 const std::vector<device::BluetoothUUID>& known_service_uuids, |
31 SimulatePreconnectedPeripheralCallback callback) override; | 31 SimulatePreconnectedPeripheralCallback callback) override; |
32 void SetNextGATTConnectionResponse( | |
33 const std::string& address, | |
34 uint16_t code, | |
35 SetNextGATTConnectionResponseCallback) override; | |
36 | 32 |
37 // BluetoothAdapter overrides: | 33 // BluetoothAdapter overrides: |
38 std::string GetAddress() const override; | 34 std::string GetAddress() const override; |
39 std::string GetName() const override; | 35 std::string GetName() const override; |
40 void SetName(const std::string& name, | 36 void SetName(const std::string& name, |
41 const base::Closure& callback, | 37 const base::Closure& callback, |
42 const ErrorCallback& error_callback) override; | 38 const ErrorCallback& error_callback) override; |
43 bool IsInitialized() const override; | 39 bool IsInitialized() const override; |
44 bool IsPresent() const override; | 40 bool IsPresent() const override; |
45 bool IsPowered() const override; | 41 bool IsPowered() const override; |
(...skipping 47 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
93 private: | 89 private: |
94 ~FakeCentral() override; | 90 ~FakeCentral() override; |
95 | 91 |
96 mojom::CentralState state_; | 92 mojom::CentralState state_; |
97 mojo::Binding<mojom::FakeCentral> binding_; | 93 mojo::Binding<mojom::FakeCentral> binding_; |
98 }; | 94 }; |
99 | 95 |
100 } // namespace bluetooth | 96 } // namespace bluetooth |
101 | 97 |
102 #endif // DEVICE_BLUETOOTH_TEST_FAKE_CENTRAL_H_ | 98 #endif // DEVICE_BLUETOOTH_TEST_FAKE_CENTRAL_H_ |
OLD | NEW |