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

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

Issue 2094633003: Bluetooth: Mac: implementation for start notification (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@write_read_characteristicscan_servicescan_cleanup
Patch Set: Addressing msarda's comments Created 4 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
1 // Copyright 2015 The Chromium Authors. All rights reserved. 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 2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file. 3 // found in the LICENSE file.
4 4
5 #ifndef DEVICE_BLUETOOTH_BLUETOOTH_LOW_ENERGY_DEVICE_MAC_H_ 5 #ifndef DEVICE_BLUETOOTH_BLUETOOTH_LOW_ENERGY_DEVICE_MAC_H_
6 #define DEVICE_BLUETOOTH_BLUETOOTH_LOW_ENERGY_DEVICE_MAC_H_ 6 #define DEVICE_BLUETOOTH_BLUETOOTH_LOW_ENERGY_DEVICE_MAC_H_
7 7
8 #if defined(OS_IOS) 8 #if defined(OS_IOS)
9 #import <CoreBluetooth/CoreBluetooth.h> 9 #import <CoreBluetooth/CoreBluetooth.h>
10 #else // !defined(OS_IOS) 10 #else // !defined(OS_IOS)
(...skipping 77 matching lines...) Expand 10 before | Expand all | Expand 10 after
88 std::string GetDeviceName() const override; 88 std::string GetDeviceName() const override;
89 void CreateGattConnectionImpl() override; 89 void CreateGattConnectionImpl() override;
90 void DisconnectGatt() override; 90 void DisconnectGatt() override;
91 91
92 // Methods used by BluetoothLowEnergyPeripheralBridge. 92 // Methods used by BluetoothLowEnergyPeripheralBridge.
93 void DidDiscoverPrimaryServices(NSError* error); 93 void DidDiscoverPrimaryServices(NSError* error);
94 void DidModifyServices(NSArray* invalidatedServices); 94 void DidModifyServices(NSArray* invalidatedServices);
95 void DidDiscoverCharacteristics(CBService* cb_service, NSError* error); 95 void DidDiscoverCharacteristics(CBService* cb_service, NSError* error);
96 void DidUpdateValue(CBCharacteristic* characteristic, NSError* error); 96 void DidUpdateValue(CBCharacteristic* characteristic, NSError* error);
97 void DidWriteValue(CBCharacteristic* characteristic, NSError* error); 97 void DidWriteValue(CBCharacteristic* characteristic, NSError* error);
98 void DidUpdateNotificationState(CBCharacteristic* characteristic,
99 NSError* error);
98 100
99 // Updates information about the device. 101 // Updates information about the device.
100 virtual void Update(NSDictionary* advertisement_data, int rssi); 102 virtual void Update(NSDictionary* advertisement_data, int rssi);
101 103
102 static std::string GetPeripheralIdentifier(CBPeripheral* peripheral); 104 static std::string GetPeripheralIdentifier(CBPeripheral* peripheral);
103 105
104 // Hashes and truncates the peripheral identifier to deterministically 106 // Hashes and truncates the peripheral identifier to deterministically
105 // construct an address. The use of fake addresses is a temporary fix before 107 // construct an address. The use of fake addresses is a temporary fix before
106 // we switch to using bluetooth identifiers throughout Chrome. 108 // we switch to using bluetooth identifiers throughout Chrome.
107 // http://crbug.com/507824 109 // http://crbug.com/507824
(...skipping 42 matching lines...) Expand 10 before | Expand all | Expand 10 after
150 152
151 // The services (identified by UUIDs) that this device provides. 153 // The services (identified by UUIDs) that this device provides.
152 std::set<BluetoothUUID> advertised_uuids_; 154 std::set<BluetoothUUID> advertised_uuids_;
153 155
154 DISALLOW_COPY_AND_ASSIGN(BluetoothLowEnergyDeviceMac); 156 DISALLOW_COPY_AND_ASSIGN(BluetoothLowEnergyDeviceMac);
155 }; 157 };
156 158
157 } // namespace device 159 } // namespace device
158 160
159 #endif // DEVICE_BLUETOOTH_BLUETOOTH_LOW_ENERGY_DEVICE_MAC_H_ 161 #endif // DEVICE_BLUETOOTH_BLUETOOTH_LOW_ENERGY_DEVICE_MAC_H_
OLDNEW
« no previous file with comments | « device/bluetooth/bluetooth_gatt_notify_session_mac.mm ('k') | device/bluetooth/bluetooth_low_energy_device_mac.mm » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698