| OLD | NEW |
| 1 // Copyright (c) 2013 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2013 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 DEVICE_BLUETOOTH_DBUS_FAKE_BLUETOOTH_DEVICE_CLIENT_H_ | 5 #ifndef DEVICE_BLUETOOTH_DBUS_FAKE_BLUETOOTH_DEVICE_CLIENT_H_ |
| 6 #define DEVICE_BLUETOOTH_DBUS_FAKE_BLUETOOTH_DEVICE_CLIENT_H_ | 6 #define DEVICE_BLUETOOTH_DBUS_FAKE_BLUETOOTH_DEVICE_CLIENT_H_ |
| 7 | 7 |
| 8 #include <cstdint> | 8 #include <cstdint> |
| 9 #include <map> | 9 #include <map> |
| 10 #include <memory> | 10 #include <memory> |
| (...skipping 231 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 242 static const char kJustWorksPath[]; | 242 static const char kJustWorksPath[]; |
| 243 static const char kJustWorksName[]; | 243 static const char kJustWorksName[]; |
| 244 static const char kJustWorksAddress[]; | 244 static const char kJustWorksAddress[]; |
| 245 static const uint32_t kJustWorksClass; | 245 static const uint32_t kJustWorksClass; |
| 246 | 246 |
| 247 static const char kLowEnergyPath[]; | 247 static const char kLowEnergyPath[]; |
| 248 static const char kLowEnergyName[]; | 248 static const char kLowEnergyName[]; |
| 249 static const char kLowEnergyAddress[]; | 249 static const char kLowEnergyAddress[]; |
| 250 static const uint32_t kLowEnergyClass; | 250 static const uint32_t kLowEnergyClass; |
| 251 | 251 |
| 252 static const char kDualPath[]; |
| 253 static const char kDualName[]; |
| 254 static const char kDualAddress[]; |
| 255 |
| 252 static const char kPairedUnconnectableDevicePath[]; | 256 static const char kPairedUnconnectableDevicePath[]; |
| 253 static const char kPairedUnconnectableDeviceName[]; | 257 static const char kPairedUnconnectableDeviceName[]; |
| 254 static const char kPairedUnconnectableDeviceAlias[]; | 258 static const char kPairedUnconnectableDeviceAlias[]; |
| 255 static const char kPairedUnconnectableDeviceAddress[]; | 259 static const char kPairedUnconnectableDeviceAddress[]; |
| 256 static const uint32_t kPairedUnconnectableDeviceClass; | 260 static const uint32_t kPairedUnconnectableDeviceClass; |
| 257 | 261 |
| 258 static const char kConnectedTrustedNotPairedDevicePath[]; | 262 static const char kConnectedTrustedNotPairedDevicePath[]; |
| 259 static const char kConnectedTrustedNotPairedDeviceAddress[]; | 263 static const char kConnectedTrustedNotPairedDeviceAddress[]; |
| 260 static const char kConnectedTrustedNotPairedDeviceName[]; | 264 static const char kConnectedTrustedNotPairedDeviceName[]; |
| 261 static const uint32_t kConnectedTrustedNotPairedDeviceClass; | 265 static const uint32_t kConnectedTrustedNotPairedDeviceClass; |
| (...skipping 79 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 341 int16_t max_transmit_power_; | 345 int16_t max_transmit_power_; |
| 342 | 346 |
| 343 // Controls the fake behavior to allow more extensive UI testing without | 347 // Controls the fake behavior to allow more extensive UI testing without |
| 344 // having to cycle the discovery simulation. | 348 // having to cycle the discovery simulation. |
| 345 bool delay_start_discovery_; | 349 bool delay_start_discovery_; |
| 346 }; | 350 }; |
| 347 | 351 |
| 348 } // namespace bluez | 352 } // namespace bluez |
| 349 | 353 |
| 350 #endif // DEVICE_BLUETOOTH_DBUS_FAKE_BLUETOOTH_DEVICE_CLIENT_H_ | 354 #endif // DEVICE_BLUETOOTH_DBUS_FAKE_BLUETOOTH_DEVICE_CLIENT_H_ |
| OLD | NEW |