Index: device/bluetooth/bluetooth_service_record_mac.h |
diff --git a/device/bluetooth/bluetooth_service_record_mac.h b/device/bluetooth/bluetooth_service_record_mac.h |
new file mode 100644 |
index 0000000000000000000000000000000000000000..bd4a266ad3c4b055991e38b7938da5e2749d3a0c |
--- /dev/null |
+++ b/device/bluetooth/bluetooth_service_record_mac.h |
@@ -0,0 +1,36 @@ |
+// Copyright 2013 The Chromium Authors. All rights reserved. |
+// Use of this source code is governed by a BSD-style license that can be |
+// found in the LICENSE file. |
+ |
+#ifndef DEVICE_BLUETOOTH_BLUETOOTH_SERVICE_RECORD_MAC_H_ |
+#define DEVICE_BLUETOOTH_BLUETOOTH_SERVICE_RECORD_MAC_H_ |
+ |
+#include "device/bluetooth/bluetooth_service_record.h" |
+ |
+#ifdef __OBJC__ |
+@class IOBluetoothDevice; |
+@class IOBluetoothSDPServiceRecord; |
+#else |
+class IOBluetoothDevice; |
+class IOBluetoothSDPServiceRecord; |
+#endif |
+ |
+namespace device { |
+ |
+class BluetoothServiceRecordMac : public BluetoothServiceRecord { |
+ public: |
+ BluetoothServiceRecordMac(IOBluetoothSDPServiceRecord* record); |
Mark Mentovai
2013/03/11 22:38:48
explicit. http://google-styleguide.googlecode.com/
youngki
2013/03/12 04:15:12
Done.
|
+ |
+ IOBluetoothDevice* GetIOBluetoothDevice() const { |
+ return device_; |
+ } |
+ |
+ private: |
+ IOBluetoothDevice* device_; |
+ |
+ DISALLOW_COPY_AND_ASSIGN(BluetoothServiceRecordMac); |
+}; |
+ |
+} // namespace device |
+ |
+#endif // DEVICE_BLUETOOTH_BLUETOOTH_SERVICE_RECORD_MAC_H_ |