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

Unified Diff: device/bluetooth/dbus/bluetooth_profile_manager_client.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/bluetooth_profile_manager_client.h
diff --git a/device/bluetooth/dbus/bluetooth_profile_manager_client.h b/device/bluetooth/dbus/bluetooth_profile_manager_client.h
index 4b6bd966d1dc4dbd3e126258ee9f79e00fcc3783..554b7d72a3fdc61a12a95b6bb5fd2fd6e48c36f5 100644
--- a/device/bluetooth/dbus/bluetooth_profile_manager_client.h
+++ b/device/bluetooth/dbus/bluetooth_profile_manager_client.h
@@ -5,6 +5,8 @@
#ifndef DEVICE_BLUETOOTH_DBUS_BLUETOOTH_PROFILE_MANAGER_CLIENT_H_
#define DEVICE_BLUETOOTH_DBUS_BLUETOOTH_PROFILE_MANAGER_CLIENT_H_
+#include <stdint.h>
+
#include <string>
#include <vector>
@@ -43,10 +45,10 @@ class DEVICE_BLUETOOTH_EXPORT BluetoothProfileManagerClient
enum ProfileRole role;
// RFCOMM channel number.
- scoped_ptr<uint16> channel;
+ scoped_ptr<uint16_t> channel;
// PSM number.
- scoped_ptr<uint16> psm;
+ scoped_ptr<uint16_t> psm;
// Pairing is required before connections will be established.
scoped_ptr<bool> require_authentication;
@@ -61,10 +63,10 @@ class DEVICE_BLUETOOTH_EXPORT BluetoothProfileManagerClient
scoped_ptr<std::string> service_record;
// Profile version.
- scoped_ptr<uint16> version;
+ scoped_ptr<uint16_t> version;
// Profile features.
- scoped_ptr<uint16> features;
+ scoped_ptr<uint16_t> features;
};
~BluetoothProfileManagerClient() override;
« no previous file with comments | « device/bluetooth/dbus/bluetooth_media_transport_client.cc ('k') | device/bluetooth/dbus/bluetooth_profile_manager_client.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698