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

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

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.h
diff --git a/device/bluetooth/dbus/fake_bluetooth_agent_service_provider.h b/device/bluetooth/dbus/fake_bluetooth_agent_service_provider.h
index e3c8cd4da55bd31c887b2269c741a74f830ad6f9..b9048f827054e1e37c042e5d12a92be2e22a730c 100644
--- a/device/bluetooth/dbus/fake_bluetooth_agent_service_provider.h
+++ b/device/bluetooth/dbus/fake_bluetooth_agent_service_provider.h
@@ -5,6 +5,8 @@
#ifndef DEVICE_BLUETOOTH_DBUS_FAKE_BLUETOOTH_AGENT_SERVICE_PROVIDER_H_
#define DEVICE_BLUETOOTH_DBUS_FAKE_BLUETOOTH_AGENT_SERVICE_PROVIDER_H_
+#include <stdint.h>
+
#include "base/bind.h"
#include "base/callback.h"
#include "base/observer_list.h"
@@ -37,11 +39,11 @@ class DEVICE_BLUETOOTH_EXPORT FakeBluetoothAgentServiceProvider
virtual void RequestPasskey(const dbus::ObjectPath& device_path,
const Delegate::PasskeyCallback& callback);
virtual void DisplayPasskey(const dbus::ObjectPath& device_path,
- uint32 passkey,
- int16 entered);
+ uint32_t passkey,
+ int16_t entered);
virtual void RequestConfirmation(
const dbus::ObjectPath& device_path,
- uint32 passkey,
+ uint32_t passkey,
const Delegate::ConfirmationCallback& callback);
virtual void RequestAuthorization(
const dbus::ObjectPath& device_path,
« no previous file with comments | « device/bluetooth/dbus/bluez_dbus_client.h ('k') | device/bluetooth/dbus/fake_bluetooth_agent_service_provider.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698