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

Unified Diff: components/pairing/bluetooth_controller_pairing_controller.h

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.h
diff --git a/components/pairing/bluetooth_controller_pairing_controller.h b/components/pairing/bluetooth_controller_pairing_controller.h
index c987563db49e2e8045e746696cd8f29aeba8705a..177211d7ca66e63348f858d96e8b11a306fcea63 100644
--- a/components/pairing/bluetooth_controller_pairing_controller.h
+++ b/components/pairing/bluetooth_controller_pairing_controller.h
@@ -5,6 +5,8 @@
#ifndef COMPONENTS_PAIRING_BLUETOOTH_CONTROLLER_PAIRING_CONTROLLER_H_
#define COMPONENTS_PAIRING_BLUETOOTH_CONTROLLER_PAIRING_CONTROLLER_H_
+#include <stdint.h>
+
#include <set>
#include "base/macros.h"
@@ -97,9 +99,11 @@ class BluetoothControllerPairingController
void RequestPasskey(device::BluetoothDevice* device) override;
void DisplayPinCode(device::BluetoothDevice* device,
const std::string& pincode) override;
- void DisplayPasskey(device::BluetoothDevice* device, uint32 passkey) override;
- void KeysEntered(device::BluetoothDevice* device, uint32 entered) override;
- void ConfirmPasskey(device::BluetoothDevice* device, uint32 passkey) override;
+ void DisplayPasskey(device::BluetoothDevice* device,
+ uint32_t passkey) override;
+ void KeysEntered(device::BluetoothDevice* device, uint32_t entered) override;
+ void ConfirmPasskey(device::BluetoothDevice* device,
+ uint32_t passkey) override;
void AuthorizePairing(device::BluetoothDevice* device) override;
Stage current_stage_;

Powered by Google App Engine
This is Rietveld 408576698