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

Side by Side Diff: components/copresence_endpoints/transports/bluetooth/copresence_socket_bluetooth.h

Issue 895783002: Remove the Copresence Endpoints API. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 5 years, 10 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 unified diff | Download patch
OLDNEW
(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_endpoints/copresence_socket.h"
14 #include "device/bluetooth/bluetooth_socket.h"
15
16 namespace net {
17 class IOBuffer;
18 }
19
20 namespace copresence_endpoints {
21
22 // A CopresenceSocketBluetooth is the Bluetooth implementation of a
23 // CopresenceSocket. This is currently a thin wrapper around BluetoothSocket.
24 class CopresenceSocketBluetooth : public CopresenceSocket {
25 public:
26 explicit CopresenceSocketBluetooth(
27 const scoped_refptr<device::BluetoothSocket>& socket);
28 ~CopresenceSocketBluetooth() override;
29
30 // CopresenceSocket overrides:
31 bool Send(const scoped_refptr<net::IOBuffer>& buffer,
32 int buffer_size) override;
33 void Receive(const 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);
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 bool receiving_;
47
48 base::WeakPtrFactory<CopresenceSocketBluetooth> weak_ptr_factory_;
49
50 DISALLOW_COPY_AND_ASSIGN(CopresenceSocketBluetooth);
51 };
52
53 } // namespace copresence_endpoints
54
55 #endif // COMPONENTS_COPRESENCE_SOCKETS_TRANSPORTS_COPRESENCE_SOCKET_BLUETOOTH_ H_
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698