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

Unified Diff: device/bluetooth/bluetooth_device_win.cc

Issue 13872017: Bluetooth: gather usage metrics (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Fix DCHECK_EQ - compile error hidden by previous WebKit issues Created 7 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: device/bluetooth/bluetooth_device_win.cc
diff --git a/device/bluetooth/bluetooth_device_win.cc b/device/bluetooth/bluetooth_device_win.cc
index 4af740ba3c596f13c771be9cf954589393580971..9cff473d8049540b8ebf15d35abe7b8e96591ae9 100644
--- a/device/bluetooth/bluetooth_device_win.cc
+++ b/device/bluetooth/bluetooth_device_win.cc
@@ -71,6 +71,18 @@ std::string BluetoothDeviceWin::GetAddress() const {
return address_;
}
+uint16 BluetoothDeviceWin::GetVendorID() const {
+ return 0;
+}
+
+uint16 BluetoothDeviceWin::GetProductID() const {
+ return 0;
+}
+
+uint16 BluetoothDeviceWin::GetDeviceID() const {
+ return 0;
+}
+
bool BluetoothDeviceWin::IsPaired() const {
return paired_;
}

Powered by Google App Engine
This is Rietveld 408576698