blob: c5d9a0e2d97fc49ed59e8a66813cbce1bf6061e6 [file] [log] [blame]
jlebelc4b09782016-05-10 00:31:581// Copyright 2016 The Chromium Authors. All rights reserved.
2// Use of this source code is governed by a BSD-style license that can be
3// found in the LICENSE file.
4
5#ifndef DEVICE_BLUETOOTH_BLUETOOTH_LOW_ENERGY_PERIPHERAL_DELEGATE_H_
6#define DEVICE_BLUETOOTH_BLUETOOTH_LOW_ENERGY_PERIPHERAL_DELEGATE_H_
7
8#include "base/mac/sdk_forward_declarations.h"
9#include "base/memory/ref_counted.h"
10#include "build/build_config.h"
11
12#if defined(OS_IOS)
13#import <CoreBluetooth/CoreBluetooth.h>
14#else
15#import <IOBluetooth/IOBluetooth.h>
16#endif
17
18namespace device {
19
20class BluetoothLowEnergyDeviceMac;
21class BluetoothLowEnergyPeripheralBridge;
22
23} // namespace device
24
25// This class will serve as the Objective-C delegate of CBPeripheral.
26@interface BluetoothLowEnergyPeripheralDelegate
27 : NSObject<CBPeripheralDelegate> {
28 std::unique_ptr<device::BluetoothLowEnergyPeripheralBridge> bridge_;
29}
30
31- (id)initWithBluetoothLowEnergyDeviceMac:
32 (device::BluetoothLowEnergyDeviceMac*)device_mac;
33
34@end
35
36#endif // DEVICE_BLUETOOTH_BLUETOOTH_LOW_ENERGY_PERIPHERAL_DELEGATE_H_