diff options
author | keybuk@chromium.org <keybuk@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2014-02-27 04:33:49 +0000 |
---|---|---|
committer | keybuk@chromium.org <keybuk@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2014-02-27 04:33:49 +0000 |
commit | e0e18d0066c61e7ff053e548c301c45b65a8449d (patch) | |
tree | 3c758efff91f1013c0df7c0b2c4435683faa52ea /device/bluetooth/bluetooth_adapter_win.cc | |
parent | fdf93ecf35b0ad0647ca1ba4d9b4e972e966fe7b (diff) | |
download | chromium_src-e0e18d0066c61e7ff053e548c301c45b65a8449d.zip chromium_src-e0e18d0066c61e7ff053e548c301c45b65a8449d.tar.gz chromium_src-e0e18d0066c61e7ff053e548c301c45b65a8449d.tar.bz2 |
BluetoothAdapter: add ability to set default pairing delegate
The default pairing delegate will be used for incoming pairing requests.
Permit multiple to be registered so that the UI can have one for popup
notifications, and a JS application could register one at a higher
priority, so the JS application will be favored.
BUG=338492
TEST=device_unittests included
Review URL: https://codereview.chromium.org/170063008
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@253715 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'device/bluetooth/bluetooth_adapter_win.cc')
-rw-r--r-- | device/bluetooth/bluetooth_adapter_win.cc | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/device/bluetooth/bluetooth_adapter_win.cc b/device/bluetooth/bluetooth_adapter_win.cc index e56ceae..bf0a9b7 100644 --- a/device/bluetooth/bluetooth_adapter_win.cc +++ b/device/bluetooth/bluetooth_adapter_win.cc @@ -150,6 +150,10 @@ void BluetoothAdapterWin::ReadLocalOutOfBandPairingData( NOTIMPLEMENTED(); } +void BluetoothAdapterWin::RemovePairingDelegateInternal( + BluetoothDevice::PairingDelegate* pairing_delegate) { +} + void BluetoothAdapterWin::AdapterStateChanged( const BluetoothTaskManagerWin::AdapterState& state) { DCHECK(thread_checker_.CalledOnValidThread()); |