| Index: components/pairing/bluetooth_controller_pairing_controller.h
|
| diff --git a/components/pairing/bluetooth_controller_pairing_controller.h b/components/pairing/bluetooth_controller_pairing_controller.h
|
| index c987563db49e2e8045e746696cd8f29aeba8705a..177211d7ca66e63348f858d96e8b11a306fcea63 100644
|
| --- a/components/pairing/bluetooth_controller_pairing_controller.h
|
| +++ b/components/pairing/bluetooth_controller_pairing_controller.h
|
| @@ -5,6 +5,8 @@
|
| #ifndef COMPONENTS_PAIRING_BLUETOOTH_CONTROLLER_PAIRING_CONTROLLER_H_
|
| #define COMPONENTS_PAIRING_BLUETOOTH_CONTROLLER_PAIRING_CONTROLLER_H_
|
|
|
| +#include <stdint.h>
|
| +
|
| #include <set>
|
|
|
| #include "base/macros.h"
|
| @@ -97,9 +99,11 @@ class BluetoothControllerPairingController
|
| void RequestPasskey(device::BluetoothDevice* device) override;
|
| void DisplayPinCode(device::BluetoothDevice* device,
|
| const std::string& pincode) override;
|
| - void DisplayPasskey(device::BluetoothDevice* device, uint32 passkey) override;
|
| - void KeysEntered(device::BluetoothDevice* device, uint32 entered) override;
|
| - void ConfirmPasskey(device::BluetoothDevice* device, uint32 passkey) override;
|
| + void DisplayPasskey(device::BluetoothDevice* device,
|
| + uint32_t passkey) override;
|
| + void KeysEntered(device::BluetoothDevice* device, uint32_t entered) override;
|
| + void ConfirmPasskey(device::BluetoothDevice* device,
|
| + uint32_t passkey) override;
|
| void AuthorizePairing(device::BluetoothDevice* device) override;
|
|
|
| Stage current_stage_;
|
|
|