Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(4)

Unified Diff: extensions/browser/api/bluetooth/bluetooth_api_pairing_delegate.cc

Issue 1549643002: Switch to standard integer types in extensions/browser/. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@clean
Patch Set: Created 5 years ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
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);

Powered by Google App Engine
This is Rietveld 408576698