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

Side by Side Diff: device/bluetooth/bluetooth_low_energy_central_manager_delegate.h

Issue 1226133006: Move CBCentralManager from the Discovery Manager to Adapter (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@adddevs
Patch Set: comment edit Created 5 years, 5 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 unified diff | Download patch
OLDNEW
(Empty)
1 // Copyright 2015 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_CENTRAL_MANAGER_DELEGATE_H_
6 #define DEVICE_BLUETOOTH_BLUETOOTH_LOW_ENERGY_CENTRAL_MANAGER_DELEGATE_H_
7
8 #include "base/mac/sdk_forward_declarations.h"
9 #include "base/memory/scoped_ptr.h"
10
11 #if defined(OS_IOS)
12 #import <CoreBluetooth/CoreBluetooth.h>
13 #else
14 #import <IOBluetooth/IOBluetooth.h>
15 #endif
16
17 namespace device {
18
19 class BluetoothAdapterMac;
20 class BluetoothLowEnergyCentralManagerBridge;
21 class BluetoothLowEnergyDiscoveryManagerMac;
22
23 } // namespace device
24
25 // This class will serve as the Objective-C delegate of CBCentralManager.
26 @interface BluetoothLowEnergyCentralManagerDelegate
27 : NSObject<CBCentralManagerDelegate> {
28 scoped_ptr<device::BluetoothLowEnergyCentralManagerBridge> bridge_;
29 }
30
31 - (id)initWithDiscoveryManager:
32 (device::BluetoothLowEnergyDiscoveryManagerMac*)discovery_manager
33 andAdapter:(device::BluetoothAdapterMac*)adapter;
34
35 @end
36
37 #endif // DEVICE_BLUETOOTH_BLUETOOTH_LOW_ENERGY_CENTRAL_MANAGER_DELEGATE_H_
OLDNEW
« no previous file with comments | « device/bluetooth/bluetooth_adapter_mac_unittest.mm ('k') | device/bluetooth/bluetooth_low_energy_central_manager_delegate.mm » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698