Index: device/bluetooth/bluetooth_profile_mac.h |
diff --git a/device/bluetooth/bluetooth_profile_mac.h b/device/bluetooth/bluetooth_profile_mac.h |
index 34b6b34d98302d90169892ee6495c891829abe13..0085efdeaeabfb6f0d618274d109635087dda905 100644 |
--- a/device/bluetooth/bluetooth_profile_mac.h |
+++ b/device/bluetooth/bluetooth_profile_mac.h |
@@ -23,7 +23,8 @@ class BluetoothProfileMac : public BluetoothProfile { |
public: |
// BluetoothProfile override. |
virtual void Unregister() OVERRIDE; |
- virtual void SetConnectionCallback(const SocketCallback& callback) OVERRIDE; |
+ virtual void SetConnectionCallback( |
+ const ConnectionCallback& callback) OVERRIDE; |
// Makes an outgoing connection to |device|. |
// This method runs |socket_callback_| with the socket and returns true if the |
@@ -38,7 +39,7 @@ class BluetoothProfileMac : public BluetoothProfile { |
const std::string uuid_; |
const std::string name_; |
- SocketCallback socket_callback_; |
+ ConnectionCallback connection_callback_; |
}; |
} // namespace device |