OLD | NEW |
---|---|
(Empty) | |
1 // Copyright 2014 The Chromium Authors. All rights reserved. | |
2 // Use of this source code is governed by a BSD-style license that can be | |
3 // found in the LICENSE file. | |
4 | |
5 #ifndef COMPONENTS_COPRESENCE_SOCKETS_TRANSPORTS_COPRESENCE_SOCKET_BLUETOOTH_H_ | |
6 #define COMPONENTS_COPRESENCE_SOCKETS_TRANSPORTS_COPRESENCE_SOCKET_BLUETOOTH_H_ | |
7 | |
8 #include <string> | |
9 | |
10 #include "base/macros.h" | |
11 #include "base/memory/ref_counted.h" | |
12 #include "base/memory/weak_ptr.h" | |
13 #include "components/copresence_sockets/public/copresence_socket.h" | |
14 #include "device/bluetooth/bluetooth_socket.h" | |
15 | |
16 namespace net { | |
17 class IOBuffer; | |
18 } | |
19 | |
20 namespace copresence_sockets { | |
21 | |
22 // A CopresenceSocketBluetooth is the Bluetooth implementation of a | |
23 // CopresenceSocket. This is currently a thin wrapper around BluetoothSocket. | |
24 class CopresenceSocketBluetooth | |
25 : public CopresenceSocket, | |
26 public base::SupportsWeakPtr<CopresenceSocketBluetooth> { | |
Ryan Sleevi
2014/10/01 19:47:25
DESIGN: DO NOT expose SupportsWeakPtr on new objec
rkc
2014/10/01 22:38:48
Done.
| |
27 public: | |
28 CopresenceSocketBluetooth(scoped_refptr<device::BluetoothSocket> socket); | |
Ryan Sleevi
2014/10/01 19:47:26
STYLE: const-ref
rkc
2014/10/01 22:38:48
Done.
| |
29 virtual ~CopresenceSocketBluetooth(); | |
30 | |
31 // CopresenceSocket overrides: | |
32 virtual bool Send(const std::string& data) override; | |
33 virtual void Receive(ReceiveCallback callback) override; | |
34 | |
35 private: | |
36 void OnSendComplete(int status); | |
37 void OnSendError(const std::string& message); | |
38 | |
39 void OnReceive(int size, scoped_refptr<net::IOBuffer> io_buffer); | |
Ryan Sleevi
2014/10/01 19:47:25
STYLE: const-ref
rkc
2014/10/01 22:38:48
As mentioned elsewhere, this is required to be thi
| |
40 void OnReceiveError(device::BluetoothSocket::ErrorReason reason, | |
41 const std::string& message); | |
42 | |
43 scoped_refptr<device::BluetoothSocket> socket_; | |
44 ReceiveCallback receive_callback_; | |
45 | |
46 DISALLOW_COPY_AND_ASSIGN(CopresenceSocketBluetooth); | |
47 }; | |
48 | |
49 } // namespace copresence_sockets | |
50 | |
51 #endif // COMPONENTS_COPRESENCE_SOCKETS_TRANSPORTS_COPRESENCE_SOCKET_BLUETOOTH_ H_ | |
OLD | NEW |