summaryrefslogtreecommitdiffstats
path: root/chromium/device/bluetooth/bluetooth_service_record_mac.h
diff options
context:
space:
mode:
Diffstat (limited to 'chromium/device/bluetooth/bluetooth_service_record_mac.h')
-rw-r--r--chromium/device/bluetooth/bluetooth_service_record_mac.h37
1 files changed, 0 insertions, 37 deletions
diff --git a/chromium/device/bluetooth/bluetooth_service_record_mac.h b/chromium/device/bluetooth/bluetooth_service_record_mac.h
deleted file mode 100644
index 13eb56bf7b7..00000000000
--- a/chromium/device/bluetooth/bluetooth_service_record_mac.h
+++ /dev/null
@@ -1,37 +0,0 @@
-// 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:
- explicit BluetoothServiceRecordMac(IOBluetoothSDPServiceRecord* record);
- virtual ~BluetoothServiceRecordMac();
-
- IOBluetoothDevice* GetIOBluetoothDevice() const {
- return device_;
- }
-
- private:
- IOBluetoothDevice* device_;
-
- DISALLOW_COPY_AND_ASSIGN(BluetoothServiceRecordMac);
-};
-
-} // namespace device
-
-#endif // DEVICE_BLUETOOTH_BLUETOOTH_SERVICE_RECORD_MAC_H_