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

Unified Diff: components/pairing/bluetooth_controller_pairing_controller.cc

Issue 1551433002: Switch to standard integer types in components/, part 3 of 4. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: more 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: 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);
}
« no previous file with comments | « components/pairing/bluetooth_controller_pairing_controller.h ('k') | components/pairing/bluetooth_host_pairing_controller.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698