summaryrefslogtreecommitdiffstats
path: root/device/bluetooth/bluetooth_adapter_unittest.cc
diff options
context:
space:
mode:
authoravi <avi@chromium.org>2015-12-22 11:26:52 -0800
committerCommit bot <commit-bot@chromium.org>2015-12-22 19:28:03 +0000
commit176e2693216e9b05a2affea94fe72014c671d65f (patch)
treec4432cf70f12eccc3e20b5a0522ce51542c407d2 /device/bluetooth/bluetooth_adapter_unittest.cc
parent5ba79938c50a93597768e9261ec7293618e759da (diff)
downloadchromium_src-176e2693216e9b05a2affea94fe72014c671d65f.zip
chromium_src-176e2693216e9b05a2affea94fe72014c671d65f.tar.gz
chromium_src-176e2693216e9b05a2affea94fe72014c671d65f.tar.bz2
Switch to standard integer types in device/.
BUG=138542 TBR=reillyg@chromium.org Review URL: https://codereview.chromium.org/1542163002 Cr-Commit-Position: refs/heads/master@{#366628}
Diffstat (limited to 'device/bluetooth/bluetooth_adapter_unittest.cc')
-rw-r--r--device/bluetooth/bluetooth_adapter_unittest.cc10
1 files changed, 7 insertions, 3 deletions
diff --git a/device/bluetooth/bluetooth_adapter_unittest.cc b/device/bluetooth/bluetooth_adapter_unittest.cc
index b451704..9cff2e4 100644
--- a/device/bluetooth/bluetooth_adapter_unittest.cc
+++ b/device/bluetooth/bluetooth_adapter_unittest.cc
@@ -2,9 +2,13 @@
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
+#include <stddef.h>
+#include <stdint.h>
+
#include "base/bind.h"
#include "base/memory/ref_counted.h"
#include "base/run_loop.h"
+#include "build/build_config.h"
#include "device/bluetooth/bluetooth_adapter.h"
#include "device/bluetooth/bluetooth_device.h"
#include "device/bluetooth/bluetooth_discovery_session.h"
@@ -133,9 +137,9 @@ class TestPairingDelegate : public BluetoothDevice::PairingDelegate {
void RequestPasskey(BluetoothDevice* device) override {}
void DisplayPinCode(BluetoothDevice* device,
const std::string& pincode) override {}
- void DisplayPasskey(BluetoothDevice* device, uint32 passkey) override {}
- void KeysEntered(BluetoothDevice* device, uint32 entered) override {}
- void ConfirmPasskey(BluetoothDevice* device, uint32 passkey) override {}
+ void DisplayPasskey(BluetoothDevice* device, uint32_t passkey) override {}
+ void KeysEntered(BluetoothDevice* device, uint32_t entered) override {}
+ void ConfirmPasskey(BluetoothDevice* device, uint32_t passkey) override {}
void AuthorizePairing(BluetoothDevice* device) override {}
};