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

Unified Diff: components/copresence_sockets/transports/bluetooth/copresence_socket_bluetooth.h

Issue 610633002: Prototype for copresenceSockets. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: format specifiers build fix Created 6 years, 2 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: components/copresence_sockets/transports/bluetooth/copresence_socket_bluetooth.h
diff --git a/components/copresence_sockets/transports/bluetooth/copresence_socket_bluetooth.h b/components/copresence_sockets/transports/bluetooth/copresence_socket_bluetooth.h
new file mode 100644
index 0000000000000000000000000000000000000000..6544d35fce67fa219e6a3a5892a47e155d53a40b
--- /dev/null
+++ b/components/copresence_sockets/transports/bluetooth/copresence_socket_bluetooth.h
@@ -0,0 +1,53 @@
+// 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 COMPONENTS_COPRESENCE_SOCKETS_TRANSPORTS_COPRESENCE_SOCKET_BLUETOOTH_H_
+#define COMPONENTS_COPRESENCE_SOCKETS_TRANSPORTS_COPRESENCE_SOCKET_BLUETOOTH_H_
+
+#include <string>
+
+#include "base/macros.h"
+#include "base/memory/ref_counted.h"
+#include "base/memory/weak_ptr.h"
+#include "components/copresence_sockets/public/copresence_socket.h"
+#include "device/bluetooth/bluetooth_socket.h"
+
+namespace net {
+class IOBuffer;
+}
+
+namespace copresence_sockets {
+
+// A CopresenceSocketBluetooth is the Bluetooth implementation of a
+// CopresenceSocket. This is currently a thin wrapper around BluetoothSocket.
+class CopresenceSocketBluetooth : public CopresenceSocket {
+ public:
+ explicit CopresenceSocketBluetooth(
+ const scoped_refptr<device::BluetoothSocket>& socket);
+ virtual ~CopresenceSocketBluetooth();
+
+ // CopresenceSocket overrides:
+ virtual bool Send(const scoped_refptr<net::IOBuffer>& buffer,
+ int buffer_size) override;
+ virtual void Receive(const ReceiveCallback& callback) override;
+
+ private:
+ void OnSendComplete(int status);
+ void OnSendError(const std::string& message);
+
+ void OnReceive(int size, scoped_refptr<net::IOBuffer> io_buffer);
+ void OnReceiveError(device::BluetoothSocket::ErrorReason reason,
+ const std::string& message);
+
+ scoped_refptr<device::BluetoothSocket> socket_;
+ ReceiveCallback receive_callback_;
+
+ base::WeakPtrFactory<CopresenceSocketBluetooth> weak_ptr_factory_;
+
+ DISALLOW_COPY_AND_ASSIGN(CopresenceSocketBluetooth);
+};
+
+} // namespace copresence_sockets
+
+#endif // COMPONENTS_COPRESENCE_SOCKETS_TRANSPORTS_COPRESENCE_SOCKET_BLUETOOTH_H_

Powered by Google App Engine
This is Rietveld 408576698