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

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

Issue 1415533006: bluetooth: Implement requestDevice by name or name prefix (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@bluetooth-characteristic-properties
Patch Set: Address scheib's comments Created 5 years, 2 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_scan_filter.h
diff --git a/content/common/bluetooth/bluetooth_scan_filter.h b/content/common/bluetooth/bluetooth_scan_filter.h
index 79cc5894d7e2da7e6bdd48a6d982aae69201f696..257274729d356fac11a4d975f61ee0f965fcf947 100644
--- a/content/common/bluetooth/bluetooth_scan_filter.h
+++ b/content/common/bluetooth/bluetooth_scan_filter.h
@@ -17,10 +17,11 @@ namespace content {
// blink::WebBluetoothScanFilter.
struct CONTENT_EXPORT BluetoothScanFilter {
BluetoothScanFilter();
- BluetoothScanFilter(const std::vector<device::BluetoothUUID>& services);
~BluetoothScanFilter();
std::vector<device::BluetoothUUID> services;
+ std::string name;
+ std::string namePrefix;
};
} // namespace content

Powered by Google App Engine
This is Rietveld 408576698