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

Unified Diff: device/bluetooth/dbus/fake_bluetooth_agent_service_provider.cc

Issue 1542163002: Switch to standard integer types in device/. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: win 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: device/bluetooth/dbus/fake_bluetooth_agent_service_provider.cc
diff --git a/device/bluetooth/dbus/fake_bluetooth_agent_service_provider.cc b/device/bluetooth/dbus/fake_bluetooth_agent_service_provider.cc
index 777deb0e0804709e3402ac03b85594df8fc182f4..4d966158f04e66cec49d264adc8f9873a061b86b 100644
--- a/device/bluetooth/dbus/fake_bluetooth_agent_service_provider.cc
+++ b/device/bluetooth/dbus/fake_bluetooth_agent_service_provider.cc
@@ -61,8 +61,8 @@ void FakeBluetoothAgentServiceProvider::RequestPasskey(
void FakeBluetoothAgentServiceProvider::DisplayPasskey(
const dbus::ObjectPath& device_path,
- uint32 passkey,
- int16 entered) {
+ uint32_t passkey,
+ int16_t entered) {
VLOG(1) << object_path_.value() << ": DisplayPasskey " << passkey << " ("
<< entered << " entered) for " << device_path.value();
delegate_->DisplayPasskey(device_path, passkey, entered);
@@ -70,7 +70,7 @@ void FakeBluetoothAgentServiceProvider::DisplayPasskey(
void FakeBluetoothAgentServiceProvider::RequestConfirmation(
const dbus::ObjectPath& device_path,
- uint32 passkey,
+ uint32_t passkey,
const Delegate::ConfirmationCallback& callback) {
VLOG(1) << object_path_.value() << ": RequestConfirmation " << passkey
<< " for " << device_path.value();
« no previous file with comments | « device/bluetooth/dbus/fake_bluetooth_agent_service_provider.h ('k') | device/bluetooth/dbus/fake_bluetooth_device_client.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698