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

Unified Diff: device/bluetooth/bluetooth_low_energy_win_fake.h

Issue 1677393002: Fix chromium-style errors after https://codereview.chromium.org/1676073002/ (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 4 years, 10 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 side-by-side diff with in-line comments
Download patch
« no previous file with comments | « no previous file | device/bluetooth/bluetooth_low_energy_win_fake.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: device/bluetooth/bluetooth_low_energy_win_fake.h
diff --git a/device/bluetooth/bluetooth_low_energy_win_fake.h b/device/bluetooth/bluetooth_low_energy_win_fake.h
index e93774f9bcabc67bffaee9748751e338c8a12c12..d2a9ca2810db06e204c2c570eac2e8b2ca510e99 100644
--- a/device/bluetooth/bluetooth_low_energy_win_fake.h
+++ b/device/bluetooth/bluetooth_low_energy_win_fake.h
@@ -33,23 +33,31 @@ typedef std::unordered_map<std::string, scoped_ptr<std::set<USHORT>>>
BLEAttributeHandleTable;
struct BLEDevice {
+ BLEDevice();
+ ~BLEDevice();
scoped_ptr<BluetoothLowEnergyDeviceInfo> device_info;
BLEGattServicesMap primary_services;
};
struct BLEGattService {
+ BLEGattService();
+ ~BLEGattService();
scoped_ptr<BTH_LE_GATT_SERVICE> service_info;
BLEGattServicesMap included_services;
BLEGattCharacteristicsMap included_characteristics;
};
struct BLEGattCharacteristic {
+ BLEGattCharacteristic();
+ ~BLEGattCharacteristic();
scoped_ptr<BTH_LE_GATT_CHARACTERISTIC> characteristic_info;
scoped_ptr<BTH_LE_GATT_CHARACTERISTIC_VALUE> value;
BLEGattDescriptorsMap included_descriptors;
};
struct BLEGattDescriptor {
+ BLEGattDescriptor();
+ ~BLEGattDescriptor();
scoped_ptr<BTH_LE_GATT_DESCRIPTOR> descriptor_info;
scoped_ptr<BTH_LE_GATT_DESCRIPTOR_VALUE> value;
};
« no previous file with comments | « no previous file | device/bluetooth/bluetooth_low_energy_win_fake.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698