| Index: extensions/browser/api/bluetooth/bluetooth_api_pairing_delegate.cc
|
| diff --git a/extensions/browser/api/bluetooth/bluetooth_api_pairing_delegate.cc b/extensions/browser/api/bluetooth/bluetooth_api_pairing_delegate.cc
|
| index a95c4e95abb00db77691bfc639567d9fac187560..22cb6f74ffe4099b0cfebe8be8402d0dc5e0b4c3 100644
|
| --- a/extensions/browser/api/bluetooth/bluetooth_api_pairing_delegate.cc
|
| +++ b/extensions/browser/api/bluetooth/bluetooth_api_pairing_delegate.cc
|
| @@ -64,7 +64,7 @@ void BluetoothApiPairingDelegate::DisplayPinCode(
|
|
|
| void BluetoothApiPairingDelegate::DisplayPasskey(
|
| device::BluetoothDevice* device,
|
| - uint32 passkey) {
|
| + uint32_t passkey) {
|
| bt_private::PairingEvent event;
|
| PopulatePairingEvent(
|
| device, bt_private::PAIRING_EVENT_TYPE_DISPLAYPASSKEY, &event);
|
| @@ -73,7 +73,7 @@ void BluetoothApiPairingDelegate::DisplayPasskey(
|
| }
|
|
|
| void BluetoothApiPairingDelegate::KeysEntered(device::BluetoothDevice* device,
|
| - uint32 entered) {
|
| + uint32_t entered) {
|
| bt_private::PairingEvent event;
|
| PopulatePairingEvent(
|
| device, bt_private::PAIRING_EVENT_TYPE_KEYSENTERED, &event);
|
| @@ -83,7 +83,7 @@ void BluetoothApiPairingDelegate::KeysEntered(device::BluetoothDevice* device,
|
|
|
| void BluetoothApiPairingDelegate::ConfirmPasskey(
|
| device::BluetoothDevice* device,
|
| - uint32 passkey) {
|
| + uint32_t passkey) {
|
| bt_private::PairingEvent event;
|
| PopulatePairingEvent(
|
| device, bt_private::PAIRING_EVENT_TYPE_CONFIRMPASSKEY, &event);
|
|
|