Index: components/pairing/bluetooth_controller_pairing_controller.cc |
diff --git a/components/pairing/bluetooth_controller_pairing_controller.cc b/components/pairing/bluetooth_controller_pairing_controller.cc |
index 2f2553a6db2a13ad0e0f6f2f079e4412b656a479..1a6fe8085247806ee6e2b2439b736d49853507d1 100644 |
--- a/components/pairing/bluetooth_controller_pairing_controller.cc |
+++ b/components/pairing/bluetooth_controller_pairing_controller.cc |
@@ -471,21 +471,21 @@ void BluetoothControllerPairingController::DisplayPinCode( |
void BluetoothControllerPairingController::DisplayPasskey( |
device::BluetoothDevice* device, |
- uint32 passkey) { |
+ uint32_t passkey) { |
// Disallow unknown device. |
device->RejectPairing(); |
} |
void BluetoothControllerPairingController::KeysEntered( |
device::BluetoothDevice* device, |
- uint32 entered) { |
+ uint32_t entered) { |
// Disallow unknown device. |
device->RejectPairing(); |
} |
void BluetoothControllerPairingController::ConfirmPasskey( |
device::BluetoothDevice* device, |
- uint32 passkey) { |
+ uint32_t passkey) { |
confirmation_code_ = base::StringPrintf("%06d", passkey); |
ChangeStage(STAGE_WAITING_FOR_CODE_CONFIRMATION); |
} |