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

Unified Diff: third_party/WebKit/public/platform/modules/bluetooth/WebBluetoothDevice.h

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 | « third_party/WebKit/Source/modules/bluetooth/BluetoothDevice.idl ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: third_party/WebKit/public/platform/modules/bluetooth/WebBluetoothDevice.h
diff --git a/third_party/WebKit/public/platform/modules/bluetooth/WebBluetoothDevice.h b/third_party/WebKit/public/platform/modules/bluetooth/WebBluetoothDevice.h
index e2d97b5ae18eef833d5e99a5ddfb2fb17cd040c5..771f94b5391afa855ad4ebf306e26145df676980 100644
--- a/third_party/WebKit/public/platform/modules/bluetooth/WebBluetoothDevice.h
+++ b/third_party/WebKit/public/platform/modules/bluetooth/WebBluetoothDevice.h
@@ -27,7 +27,6 @@ struct WebBluetoothDevice {
uint16_t vendorID,
uint16_t productID,
uint16_t productVersion,
- bool paired,
const WebVector<WebString>& uuids)
: id(id)
, name(name)
@@ -38,7 +37,6 @@ struct WebBluetoothDevice {
, vendorID(vendorID)
, productID(productID)
, productVersion(productVersion)
- , paired(paired)
, uuids(uuids)
{
}
@@ -55,7 +53,6 @@ struct WebBluetoothDevice {
const uint16_t vendorID;
const uint16_t productID;
const uint16_t productVersion;
- const bool paired;
const WebVector<WebString> uuids;
};
« no previous file with comments | « third_party/WebKit/Source/modules/bluetooth/BluetoothDevice.idl ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698