Index: device/bluetooth/bluetooth_device_chromeos.cc |
diff --git a/device/bluetooth/bluetooth_device_chromeos.cc b/device/bluetooth/bluetooth_device_chromeos.cc |
index c8bb7007b948932066139bfd09802947f50b4a34..d45596bfbc11b00ab47dab4ce342a1e95bbcb30f 100644 |
--- a/device/bluetooth/bluetooth_device_chromeos.cc |
+++ b/device/bluetooth/bluetooth_device_chromeos.cc |
@@ -28,6 +28,7 @@ |
#include "device/bluetooth/bluetooth_adapter_chromeos.h" |
#include "device/bluetooth/bluetooth_out_of_band_pairing_data.h" |
#include "device/bluetooth/bluetooth_service_record.h" |
+#include "device/bluetooth/bluetooth_service_record_chromeos.h" |
#include "device/bluetooth/bluetooth_socket_chromeos.h" |
#include "device/bluetooth/bluetooth_utils.h" |
#include "third_party/cros_system_api/dbus/service_constants.h" |
@@ -35,6 +36,7 @@ |
using device::BluetoothDevice; |
using device::BluetoothOutOfBandPairingData; |
using device::BluetoothServiceRecord; |
+using device::BluetoothServiceRecordChromeOs; |
using device::BluetoothSocket; |
namespace chromeos { |
bryeung
2013/01/14 20:21:46
you declared BluetoothDeviceChromeOs in the device
youngki
2013/01/14 20:37:57
Done.
|
@@ -404,7 +406,7 @@ void BluetoothDeviceChromeOs::CollectServiceRecordsCallback( |
for (BluetoothDeviceClient::ServiceMap::const_iterator i = |
service_map.begin(); i != service_map.end(); ++i) { |
records.push_back( |
- new BluetoothServiceRecord(address(), i->second)); |
+ new BluetoothServiceRecordChromeOs(address(), i->second)); |
} |
callback.Run(records); |
} |