diff options
author | isherman@chromium.org <isherman@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2014-07-23 06:18:54 +0000 |
---|---|---|
committer | isherman@chromium.org <isherman@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2014-07-23 06:18:54 +0000 |
commit | daed8ecb55ea000eb991d5ef039893018de5d624 (patch) | |
tree | 87e55c25bd7f80de79799a48608169fe67bd5568 /device/bluetooth/bluetooth_adapter_win.cc | |
parent | d3a0fa8f4c49d9b0a4d4e1cead494f0f7d60e601 (diff) | |
download | chromium_src-daed8ecb55ea000eb991d5ef039893018de5d624.zip chromium_src-daed8ecb55ea000eb991d5ef039893018de5d624.tar.gz chromium_src-daed8ecb55ea000eb991d5ef039893018de5d624.tar.bz2 |
Cleanup: Drop some unnecessary params from the BluetoothSocketNet constructor.
BUG=none
TEST=none
R=keybuk@chromium.org
Review URL: https://codereview.chromium.org/397123002
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@284857 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'device/bluetooth/bluetooth_adapter_win.cc')
-rw-r--r-- | device/bluetooth/bluetooth_adapter_win.cc | 5 |
1 files changed, 1 insertions, 4 deletions
diff --git a/device/bluetooth/bluetooth_adapter_win.cc b/device/bluetooth/bluetooth_adapter_win.cc index 467aa4f..2074986 100644 --- a/device/bluetooth/bluetooth_adapter_win.cc +++ b/device/bluetooth/bluetooth_adapter_win.cc @@ -168,10 +168,7 @@ void BluetoothAdapterWin::CreateRfcommService( const CreateServiceErrorCallback& error_callback) { scoped_refptr<BluetoothSocketWin> socket = BluetoothSocketWin::CreateBluetoothSocket( - ui_task_runner_, - socket_thread_, - NULL, - net::NetLog::Source()); + ui_task_runner_, socket_thread_); socket->Listen(this, uuid, options, base::Bind(callback, socket), error_callback); |