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

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

Issue 1945823003: bluetooth: Remove BluetoothAdvertisementData (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@my-origin
Patch Set: Fix test Created 4 years, 7 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/modules.gypi ('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 2c2dfccc5b2f343c2b98f3b4d2a1f4516901513c..ec77ffbc14e042e2da31b5a0825029b15a92e219 100644
--- a/third_party/WebKit/public/platform/modules/bluetooth/WebBluetoothDevice.h
+++ b/third_party/WebKit/public/platform/modules/bluetooth/WebBluetoothDevice.h
@@ -14,13 +14,9 @@ namespace blink {
struct WebBluetoothDevice {
WebBluetoothDevice(const WebString& id,
const WebString& name,
- int8_t txPower,
- int8_t rssi,
const WebVector<WebString>& uuids)
: id(id)
, name(name)
- , txPower(txPower)
- , rssi(rssi)
, uuids(uuids)
{
}
@@ -28,10 +24,6 @@ struct WebBluetoothDevice {
// Members corresponding to BluetoothDevice attributes as specified in IDL.
const WebString id;
const WebString name;
- // Powers:
- // A value of 127 denotes an invalid power.
- const int8_t txPower;
- const int8_t rssi;
const WebVector<WebString> uuids;
};
« no previous file with comments | « third_party/WebKit/Source/modules/modules.gypi ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698