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

Unified Diff: device/bluetooth/bluetooth_device.cc

Issue 1220713006: Renaming BluetoothDeviceMac as BluetoothClassicDeviceMac (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@dm
Patch Set: Created 5 years, 6 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
Index: device/bluetooth/bluetooth_device.cc
diff --git a/device/bluetooth/bluetooth_device.cc b/device/bluetooth/bluetooth_device.cc
index fe21162e9335f453e377960f70731698ea67fcb6..c8c77116229662ff16cf0bab7f88130242a0d31d 100644
--- a/device/bluetooth/bluetooth_device.cc
+++ b/device/bluetooth/bluetooth_device.cc
@@ -22,6 +22,14 @@ BluetoothDevice::~BluetoothDevice() {
STLDeleteValues(&gatt_services_);
}
+bool BluetoothDevice::SupportsLowEnergy() const {
+ return supports_low_energy_;
+}
+
+bool BluetoothDevice::SupportsClassic() const {
+ return supports_classic_;
+}
+
BluetoothDevice::ConnectionInfo::ConnectionInfo()
: rssi(kUnknownPower),
transmit_power(kUnknownPower),

Powered by Google App Engine
This is Rietveld 408576698