From f57136c13874f21a4c6885e49d00d3c45bb427ba Mon Sep 17 00:00:00 2001 From: avi Date: Fri, 25 Dec 2015 15:27:45 -0800 Subject: Switch to standard integer types in components/, part 3 of 4. BUG=138542 TBR=blundell@chromium.org Review URL: https://codereview.chromium.org/1551433002 Cr-Commit-Position: refs/heads/master@{#366874} --- components/pairing/bluetooth_controller_pairing_controller.cc | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to '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 2f2553a..1a6fe80 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); } -- cgit v1.1