Chromium Code Reviews| Index: components/copresence_sockets/mediums/bluetooth/copresence_socket_bluetooth.h |
| diff --git a/components/copresence_sockets/mediums/bluetooth/copresence_socket_bluetooth.h b/components/copresence_sockets/mediums/bluetooth/copresence_socket_bluetooth.h |
| new file mode 100644 |
| index 0000000000000000000000000000000000000000..01c38d300119529d2e64107f4bd02899504f39c4 |
| --- /dev/null |
| +++ b/components/copresence_sockets/mediums/bluetooth/copresence_socket_bluetooth.h |
| @@ -0,0 +1,51 @@ |
| +// Copyright 2014 The Chromium Authors. All rights reserved. |
|
Ken Rockot(use gerrit already)
2014/09/30 17:26:04
nit: "media" or "transports" instead of "mediums"?
rkc
2014/10/01 19:08:23
Done.
|
| +// Use of this source code is governed by a BSD-style license that can be |
| +// found in the LICENSE file. |
| + |
| +#ifndef COMPONENTS_COPRESENCE_SOCKETS_COPRESENCE_SOCKET_BLUETOOTH_H_ |
| +#define COMPONENTS_COPRESENCE_SOCKETS_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 base::SupportsWeakPtr<CopresenceSocketBluetooth> { |
|
Cait (Slow)
2014/09/30 17:56:01
Use WeakPtrFactory here instead, too?
armansito
2014/09/30 20:37:58
Agreed, unless weak pointers to this class are nee
rkc
2014/10/01 19:08:23
Done.
rkc
2014/10/01 19:08:23
Done.
|
| + public: |
| + CopresenceSocketBluetooth(scoped_refptr<device::BluetoothSocket> socket); |
| + virtual ~CopresenceSocketBluetooth(); |
| + |
| + // CopresenceSocket overrides: |
| + virtual bool Send(const std::string& data) override; |
| + virtual void Receive(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_; |
| + |
| + DISALLOW_COPY_AND_ASSIGN(CopresenceSocketBluetooth); |
| +}; |
| + |
| +} // namespace copresence_sockets |
| + |
| +#endif // COMPONENTS_COPRESENCE_SOCKETS_COPRESENCE_SOCKET_BLUETOOTH_H_ |