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

Unified Diff: device/bluetooth/bluetooth_device_win.cc

Issue 397123002: Cleanup: Drop some unnecessary params from the BluetoothSocketNet constructor. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Clean up Windows as well Created 6 years, 5 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 47376bcdae0afbfa7d60ac68a797fb448198277e..6de80e7c1755845d2d638a697fb65f46661b2545 100644
--- a/device/bluetooth/bluetooth_device_win.cc
+++ b/device/bluetooth/bluetooth_device_win.cc
@@ -203,7 +203,7 @@ void BluetoothDeviceWin::ConnectToService(
const ConnectToServiceErrorCallback& error_callback) {
scoped_refptr<BluetoothSocketWin> socket(
BluetoothSocketWin::CreateBluetoothSocket(
- ui_task_runner_, socket_thread_, NULL, net::NetLog::Source()));
+ ui_task_runner_, socket_thread_));
socket->Connect(this, uuid, base::Bind(callback, socket), error_callback);
}

Powered by Google App Engine
This is Rietveld 408576698