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

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

Issue 1564953003: bluetooth: Remove BluetoothDevice.paired (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 4 years, 11 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 | « content/common/bluetooth/bluetooth_device.h ('k') | content/common/bluetooth/bluetooth_messages.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: content/common/bluetooth/bluetooth_device.cc
diff --git a/content/common/bluetooth/bluetooth_device.cc b/content/common/bluetooth/bluetooth_device.cc
index 2812d8a4c1de8e5937fa0190f176259f527991da..e89e0195a09392eb77d485320e3286cf448f0a6a 100644
--- a/content/common/bluetooth/bluetooth_device.cc
+++ b/content/common/bluetooth/bluetooth_device.cc
@@ -19,7 +19,6 @@ BluetoothDevice::BluetoothDevice()
vendor_id(0),
product_id(0),
product_version(0),
- paired(false),
uuids() {}
BluetoothDevice::BluetoothDevice(
@@ -32,7 +31,6 @@ BluetoothDevice::BluetoothDevice(
uint16_t vendor_id,
uint16_t product_id,
uint16_t product_version,
- bool paired,
const std::vector<std::string>& uuids)
: id(id),
name(name),
@@ -43,7 +41,6 @@ BluetoothDevice::BluetoothDevice(
vendor_id(vendor_id),
product_id(product_id),
product_version(product_version),
- paired(paired),
uuids(uuids) {}
BluetoothDevice::~BluetoothDevice() {
« no previous file with comments | « content/common/bluetooth/bluetooth_device.h ('k') | content/common/bluetooth/bluetooth_messages.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698