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 #ifndef CONTENT_SHELL_BROWSER_LAYOUT_TEST_LAYOUT_TEST_FIRST_DEVICE_BLUETOOTH_CHO
OSER_H_ | 5 #ifndef CONTENT_SHELL_BROWSER_LAYOUT_TEST_LAYOUT_TEST_FIRST_DEVICE_BLUETOOTH_CHO
OSER_H_ |
6 #define CONTENT_SHELL_BROWSER_LAYOUT_TEST_LAYOUT_TEST_FIRST_DEVICE_BLUETOOTH_CHO
OSER_H_ | 6 #define CONTENT_SHELL_BROWSER_LAYOUT_TEST_LAYOUT_TEST_FIRST_DEVICE_BLUETOOTH_CHO
OSER_H_ |
7 | 7 |
8 #include <string> | 8 #include <string> |
9 | 9 |
10 #include "base/macros.h" | 10 #include "base/macros.h" |
11 #include "content/public/browser/bluetooth_chooser.h" | 11 #include "content/public/browser/bluetooth_chooser.h" |
12 | 12 |
13 namespace content { | 13 namespace content { |
14 | 14 |
15 // Implements a Bluetooth chooser that selects the first added device, or | 15 // Implements a Bluetooth chooser that selects the first added device, or |
16 // cancels if no device is added before discovery stops. This is used as a | 16 // cancels if no device is added before discovery stops. This is used as a |
17 // default chooser implementation for testing. | 17 // default chooser implementation for testing. |
18 class LayoutTestFirstDeviceBluetoothChooser : public BluetoothChooser { | 18 class LayoutTestFirstDeviceBluetoothChooser : public BluetoothChooser { |
19 public: | 19 public: |
20 // See the BluetoothChooser::EventHandler comments for how |event_handler| is | 20 // See the BluetoothChooser::EventHandler comments for how |event_handler| is |
21 // used. | 21 // used. |
22 explicit LayoutTestFirstDeviceBluetoothChooser( | 22 explicit LayoutTestFirstDeviceBluetoothChooser( |
23 const EventHandler& event_handler); | 23 const EventHandler& event_handler); |
24 ~LayoutTestFirstDeviceBluetoothChooser() override; | 24 ~LayoutTestFirstDeviceBluetoothChooser() override; |
25 | 25 |
26 // BluetoothChooser: | 26 // BluetoothChooser: |
27 void SetAdapterPresence(AdapterPresence presence) override; | 27 void SetAdapterPresence(AdapterPresence presence) override; |
28 void ShowDiscoveryState(DiscoveryState state) override; | 28 void ShowDiscoveryState(DiscoveryState state) override; |
29 void AddDevice(const std::string& device_id, | 29 void AddOrUpdateDevice(const std::string& device_id, |
30 const base::string16& device_name) override; | 30 bool should_update_name, |
| 31 const base::string16& device_name, |
| 32 bool is_gatt_connected, |
| 33 bool is_paired, |
| 34 const int8_t* rssi) override; |
31 void RemoveDevice(const std::string& device_id) override {} | 35 void RemoveDevice(const std::string& device_id) override {} |
32 | 36 |
33 private: | 37 private: |
34 EventHandler event_handler_; | 38 EventHandler event_handler_; |
35 | 39 |
36 DISALLOW_COPY_AND_ASSIGN(LayoutTestFirstDeviceBluetoothChooser); | 40 DISALLOW_COPY_AND_ASSIGN(LayoutTestFirstDeviceBluetoothChooser); |
37 }; | 41 }; |
38 | 42 |
39 } // namespace content | 43 } // namespace content |
40 | 44 |
41 #endif // CONTENT_SHELL_BROWSER_LAYOUT_TEST_LAYOUT_TEST_FIRST_DEVICE_BLUETOOTH_
CHOOSER_H_ | 45 #endif // CONTENT_SHELL_BROWSER_LAYOUT_TEST_LAYOUT_TEST_FIRST_DEVICE_BLUETOOTH_
CHOOSER_H_ |
OLD | NEW |