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

Unified Diff: device/bluetooth/bluetooth_classic_device_mac.mm

Issue 1284073002: bluetooth: Add adapter to BluetoothDevice (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@bt-drop-callback-
Patch Set: Merge TOT Created 5 years, 3 months 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
« no previous file with comments | « device/bluetooth/bluetooth_classic_device_mac.h ('k') | device/bluetooth/bluetooth_device.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: device/bluetooth/bluetooth_classic_device_mac.mm
diff --git a/device/bluetooth/bluetooth_classic_device_mac.mm b/device/bluetooth/bluetooth_classic_device_mac.mm
index e3ceae3b20177fd9f79212ede553aa71bd6ae121..f7743e0dca26c6167ea07c3f4a00f6aa5378d4eb 100644
--- a/device/bluetooth/bluetooth_classic_device_mac.mm
+++ b/device/bluetooth/bluetooth_classic_device_mac.mm
@@ -58,9 +58,10 @@ BluetoothUUID ExtractUuid(IOBluetoothSDPDataElement* service_class_data) {
} // namespace
-BluetoothClassicDeviceMac::BluetoothClassicDeviceMac(IOBluetoothDevice* device)
- : device_([device retain]) {
-}
+BluetoothClassicDeviceMac::BluetoothClassicDeviceMac(
+ BluetoothAdapterMac* adapter,
+ IOBluetoothDevice* device)
+ : BluetoothDeviceMac(adapter), device_([device retain]) {}
BluetoothClassicDeviceMac::~BluetoothClassicDeviceMac() {
}
« no previous file with comments | « device/bluetooth/bluetooth_classic_device_mac.h ('k') | device/bluetooth/bluetooth_device.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698