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

Unified Diff: device/bluetooth/bluetooth_socket_thread_win.h

Issue 180163009: chrome.bluetooth API improvements. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Fix ChromeOS Full build. Created 6 years, 8 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
« no previous file with comments | « device/bluetooth/bluetooth_socket_mac.mm ('k') | device/bluetooth/bluetooth_socket_thread_win.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: device/bluetooth/bluetooth_socket_thread_win.h
diff --git a/device/bluetooth/bluetooth_socket_thread_win.h b/device/bluetooth/bluetooth_socket_thread_win.h
new file mode 100644
index 0000000000000000000000000000000000000000..063ebbbeed0f3ea88aec65e7111b566121fc80ca
--- /dev/null
+++ b/device/bluetooth/bluetooth_socket_thread_win.h
@@ -0,0 +1,48 @@
+// Copyright 2014 The Chromium Authors. All rights reserved.
+// Use of this source code is governed by a BSD-style license that can be
+// found in the LICENSE file.
+
+#ifndef DEVICE_BLUETOOTH_BLUETOOTH_SOCKET_THREAD_WIN_H_
+#define DEVICE_BLUETOOTH_BLUETOOTH_SOCKET_THREAD_WIN_H_
+
+#include "base/memory/ref_counted.h"
+#include "base/memory/scoped_ptr.h"
+#include "base/threading/thread_checker.h"
+
+namespace base {
+class SequencedTaskRunner;
+class Thread;
+} // namespace base
+
+namespace device {
+
+// Thread abstraction used by |BluetoothSocketWWin| to perform IO operations on
+// the underlying platform sockets. An instance of this class can be shared by
+// many active sockets.
+class BluetoothSocketThreadWin
+ : public base::RefCountedThreadSafe<BluetoothSocketThreadWin> {
+ public:
+ static scoped_refptr<BluetoothSocketThreadWin> Get();
+ void OnSocketActivate();
+ void OnSocketDeactivate();
+
+ scoped_refptr<base::SequencedTaskRunner> task_runner() const;
+
+ private:
+ friend class base::RefCountedThreadSafe<BluetoothSocketThreadWin>;
+ BluetoothSocketThreadWin();
+ virtual ~BluetoothSocketThreadWin();
+
+ void EnsureStarted();
+
+ base::ThreadChecker thread_checker_;
+ int active_socket_count_;
+ scoped_ptr<base::Thread> thread_;
+ scoped_refptr<base::SequencedTaskRunner> task_runner_;
+
+ DISALLOW_COPY_AND_ASSIGN(BluetoothSocketThreadWin);
+};
+
+} // namespace device
+
+#endif // DEVICE_BLUETOOTH_BLUETOOTH_SOCKET_THREAD_WIN_H_
« no previous file with comments | « device/bluetooth/bluetooth_socket_mac.mm ('k') | device/bluetooth/bluetooth_socket_thread_win.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698