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..61e59a52a480542c919f37369708a69c6b4e3d92 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" |
@@ -404,7 +405,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)); |
miket_OOO
2013/01/15 18:40:19
FYI:
$ grep -oR ChromeOS * | wc -l
1124
$ grep -o
keybuk
2013/01/15 19:42:00
I agree, let's name this ChromeOS and fix the othe
youngki
2013/01/16 00:39:38
Done.
|
} |
callback.Run(records); |
} |