blob: 31873d6d57b3f01a96aee7104e0512ace0e7c70a (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
|
// Copyright 2015 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_DEVICE_MAC_H_
#define DEVICE_BLUETOOTH_BLUETOOTH_DEVICE_MAC_H_
#include "base/macros.h"
#include "device/bluetooth/bluetooth_device.h"
#include "device/bluetooth/bluetooth_gatt_service.h"
@class NSDate;
namespace device {
class BluetoothAdapterMac;
class DEVICE_BLUETOOTH_EXPORT BluetoothDeviceMac : public BluetoothDevice {
public:
~BluetoothDeviceMac() override;
// Converts between ConnectErrorCode and NSError.
static NSError* GetNSErrorFromConnectErrorCode(
BluetoothDevice::ConnectErrorCode error_code);
static BluetoothDevice::ConnectErrorCode GetConnectErrorCodeFromNSError(
NSError* error);
static NSError* GetNSErrorFromGattErrorCode(
BluetoothGattService::GattErrorCode error_code);
static BluetoothGattService::GattErrorCode GetGattErrorCodeFromNSError(
NSError* error);
protected:
BluetoothDeviceMac(BluetoothAdapterMac* adapter);
DISALLOW_COPY_AND_ASSIGN(BluetoothDeviceMac);
};
} // namespace device
#endif // DEVICE_BLUETOOTH_BLUETOOTH_DEVICE_MAC_H_
|