Scroll in Android HTML Element accessibility navigation
[chromium-blink-merge.git] / remoting / protocol / p2p_stream_socket.h
blob7f841e1d9ce96e6ff965dc9f2326236a7f1e988e
1 // Copyright 2015 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.
5 #ifndef REMOTING_PROTOCOL_P2P_STREAM_SOCKET_H_
6 #define REMOTING_PROTOCOL_P2P_STREAM_SOCKET_H_
8 #include "net/base/completion_callback.h"
10 namespace net {
11 class IOBuffer;
12 } // namespace net
14 namespace remoting {
15 namespace protocol {
17 // Peer-to-peer socket with stream semantics.
18 class P2PStreamSocket {
19 public:
20 virtual ~P2PStreamSocket() {};
22 // Reads data, up to |buf_len| bytes, from the socket. The number of bytes
23 // read is returned, or an error is returned upon failure. ERR_IO_PENDING
24 // is returned if the operation could not be completed synchronously, in which
25 // case the result will be passed to the callback when available. If the
26 // operation is not completed immediately, the socket acquires a reference to
27 // the provided buffer until the callback is invoked or the socket is
28 // closed. If the socket is destroyed before the read completes, the
29 // callback will not be invoked.
30 virtual int Read(const scoped_refptr<net::IOBuffer>& buf, int buf_len,
31 const net::CompletionCallback& callback) = 0;
33 // Writes data, up to |buf_len| bytes, to the socket. Note: data may be
34 // written partially. The number of bytes written is returned, or an error
35 // is returned upon failure. ERR_IO_PENDING is returned if the operation could
36 // not be completed synchronously, in which case the result will be passed to
37 // the callback when available. If the operation is not completed
38 // immediately, the socket acquires a reference to the provided buffer until
39 // the callback is invoked or the socket is closed. Implementations of this
40 // method should not modify the contents of the actual buffer that is written
41 // to the socket.
42 virtual int Write(const scoped_refptr<net::IOBuffer>& buf, int buf_len,
43 const net::CompletionCallback& callback) = 0;
46 } // namespace protocol
47 } // namespace remoting
49 #endif // REMOTING_PROTOCOL_P2P_STREAM_SOCKET_H_