Index: device/bluetooth/bluetooth_profile_win.h |
diff --git a/device/bluetooth/bluetooth_profile_win.h b/device/bluetooth/bluetooth_profile_win.h |
index a102bf5069a769964e082f63e6f0658e473ce7c8..b7b533393c968947730359e2c98f4da971a9dc68 100644 |
--- a/device/bluetooth/bluetooth_profile_win.h |
+++ b/device/bluetooth/bluetooth_profile_win.h |
@@ -8,6 +8,7 @@ |
#include <string> |
#include "device/bluetooth/bluetooth_profile.h" |
+#include "device/bluetooth/bluetooth_uuid.h" |
namespace device { |
@@ -25,10 +26,10 @@ class BluetoothProfileWin : public BluetoothProfile { |
private: |
friend BluetoothProfile; |
- BluetoothProfileWin(const std::string& uuid, const std::string& name); |
+ BluetoothProfileWin(const BluetoothUUID& uuid, const std::string& name); |
virtual ~BluetoothProfileWin(); |
- const std::string uuid_; |
+ const BluetoothUUID uuid_; |
const std::string name_; |
ConnectionCallback connection_callback_; |
}; |