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

Unified Diff: device/bluetooth/bluetooth_socket_net.cc

Issue 278663002: Implement chrome.bluetoothSocket.listenUsing*() (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Fix BluetoothAdapterMac include typo Created 6 years, 7 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_socket_net.cc
diff --git a/device/bluetooth/bluetooth_socket_net.cc b/device/bluetooth/bluetooth_socket_net.cc
index 83605784fe143630443e7f9eb74297ba89885d82..8ee2900f04ce5952bea0a03ab2937e5c4bdb45e9 100644
--- a/device/bluetooth/bluetooth_socket_net.cc
+++ b/device/bluetooth/bluetooth_socket_net.cc
@@ -31,19 +31,6 @@ static void DeactivateSocket(
namespace device {
-// static
-scoped_refptr<BluetoothSocketNet>
-BluetoothSocketNet::CreateBluetoothSocket(
- scoped_refptr<base::SequencedTaskRunner> ui_task_runner,
- scoped_refptr<BluetoothSocketThread> socket_thread,
- net::NetLog* net_log,
- const net::NetLog::Source& source) {
- DCHECK(ui_task_runner->RunsTasksOnCurrentThread());
-
- return make_scoped_refptr(
- new BluetoothSocketNet(ui_task_runner, socket_thread, net_log, source));
-}
-
BluetoothSocketNet::WriteRequest::WriteRequest()
: buffer_size(0) {}

Powered by Google App Engine
This is Rietveld 408576698