diff options
author | keybuk@chromium.org <keybuk@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2013-04-29 21:32:19 +0000 |
---|---|---|
committer | keybuk@chromium.org <keybuk@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2013-04-29 21:32:19 +0000 |
commit | 611ae29a72a8cb343679767f454fed6d0c71b771 (patch) | |
tree | 361b4488986388b400ad64e7491d72a48863f478 /device/bluetooth/bluetooth_device_win.cc | |
parent | cea0201e639979c0e7ca4f3a771f24621dba7ecc (diff) | |
download | chromium_src-611ae29a72a8cb343679767f454fed6d0c71b771.zip chromium_src-611ae29a72a8cb343679767f454fed6d0c71b771.tar.gz chromium_src-611ae29a72a8cb343679767f454fed6d0c71b771.tar.bz2 |
Bluetooth: gather usage metrics
Resubmit; this was reverted in 196993 due to a missing initialization in a unit test.
BUG=233820
TEST=chrome:///histograms
Review URL: https://codereview.chromium.org/14109028
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@197148 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'device/bluetooth/bluetooth_device_win.cc')
-rw-r--r-- | device/bluetooth/bluetooth_device_win.cc | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/device/bluetooth/bluetooth_device_win.cc b/device/bluetooth/bluetooth_device_win.cc index cfe9ac9..7779166 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_; } |