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

Unified Diff: content/common/bluetooth/bluetooth_device.h

Issue 1926623002: bluetooth: Remove the device info and device class fields from BluetoothDevice. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 4 years, 8 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: content/common/bluetooth/bluetooth_device.h
diff --git a/content/common/bluetooth/bluetooth_device.h b/content/common/bluetooth/bluetooth_device.h
index 7350efc30d2110eb1f6ecd2c0fa5961bb74b78af..535f13c15ee54084cb8082726111f45208024417 100644
--- a/content/common/bluetooth/bluetooth_device.h
+++ b/content/common/bluetooth/bluetooth_device.h
@@ -23,11 +23,6 @@ struct CONTENT_EXPORT BluetoothDevice {
const base::string16& name,
int8_t tx_power,
int8_t rssi,
- uint32_t device_class,
- device::BluetoothDevice::VendorIDSource vendor_id_source,
- uint16_t vendor_id,
- uint16_t product_id,
- uint16_t product_version,
const std::vector<std::string>& uuids);
~BluetoothDevice();
@@ -45,11 +40,6 @@ struct CONTENT_EXPORT BluetoothDevice {
base::string16 name;
int8_t tx_power;
int8_t rssi;
- uint32_t device_class;
- device::BluetoothDevice::VendorIDSource vendor_id_source;
- uint16_t vendor_id;
- uint16_t product_id;
- uint16_t product_version;
std::vector<std::string> uuids; // 128bit UUIDs with dashes. 36 chars.
};
« no previous file with comments | « content/browser/bluetooth/bluetooth_dispatcher_host.cc ('k') | content/common/bluetooth/bluetooth_device.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698