OLD | NEW |
1 // Copyright (c) 2011 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2011 The Chromium Authors. All rights reserved. |
2 // Use of this source code is governed by a BSD-style license that can be | 2 // Use of this source code is governed by a BSD-style license that can be |
3 // found in the LICENSE file. | 3 // found in the LICENSE file. |
4 | 4 |
5 #ifndef CHROME_BROWSER_RENDERER_HOST_SOCKET_STREAM_HOST_H_ | 5 #ifndef CHROME_BROWSER_RENDERER_HOST_SOCKET_STREAM_HOST_H_ |
6 #define CHROME_BROWSER_RENDERER_HOST_SOCKET_STREAM_HOST_H_ | 6 #define CHROME_BROWSER_RENDERER_HOST_SOCKET_STREAM_HOST_H_ |
7 #pragma once | 7 #pragma once |
8 | 8 |
9 #include <vector> | 9 #include <vector> |
10 | 10 |
(...skipping 14 matching lines...) Expand all Loading... |
25 // Each SocketStreamHost has SocketStream to manage bi-directional | 25 // Each SocketStreamHost has SocketStream to manage bi-directional |
26 // communication over socket stream. | 26 // communication over socket stream. |
27 // The lifetime of an instance of this class is completely controlled by the | 27 // The lifetime of an instance of this class is completely controlled by the |
28 // SocketStreamDispatcherHost. | 28 // SocketStreamDispatcherHost. |
29 class SocketStreamHost { | 29 class SocketStreamHost { |
30 public: | 30 public: |
31 SocketStreamHost(net::SocketStream::Delegate* delegate, int socket_id); | 31 SocketStreamHost(net::SocketStream::Delegate* delegate, int socket_id); |
32 ~SocketStreamHost(); | 32 ~SocketStreamHost(); |
33 | 33 |
34 // Gets socket_id associated with |socket|. | 34 // Gets socket_id associated with |socket|. |
35 static int SocketIdFromSocketStream(net::SocketStream* socket); | 35 static int SocketIdFromSocketStream(const net::SocketStream* socket); |
36 | 36 |
37 int socket_id() const { return socket_id_; } | 37 int socket_id() const { return socket_id_; } |
38 | 38 |
39 // Starts to open connection to |url|. | 39 // Starts to open connection to |url|. |
40 void Connect(const GURL& url, net::URLRequestContext* request_context); | 40 void Connect(const GURL& url, net::URLRequestContext* request_context); |
41 | 41 |
42 // Sends |data| over the socket stream. | 42 // Sends |data| over the socket stream. |
43 // socket stream must be open to send data. | 43 // socket stream must be open to send data. |
44 // Returns true if the data is put in transmit buffer in socket stream. | 44 // Returns true if the data is put in transmit buffer in socket stream. |
45 // Returns false otherwise (transmit buffer exceeds limit, or socket | 45 // Returns false otherwise (transmit buffer exceeds limit, or socket |
46 // stream is closed). | 46 // stream is closed). |
47 bool SendData(const std::vector<char>& data); | 47 bool SendData(const std::vector<char>& data); |
48 | 48 |
49 // Closes the socket stream. | 49 // Closes the socket stream. |
50 void Close(); | 50 void Close(); |
51 | 51 |
52 private: | 52 private: |
53 net::SocketStream::Delegate* delegate_; | 53 net::SocketStream::Delegate* delegate_; |
54 int socket_id_; | 54 int socket_id_; |
55 | 55 |
56 scoped_refptr<net::SocketStreamJob> socket_; | 56 scoped_refptr<net::SocketStreamJob> socket_; |
57 | 57 |
58 DISALLOW_COPY_AND_ASSIGN(SocketStreamHost); | 58 DISALLOW_COPY_AND_ASSIGN(SocketStreamHost); |
59 }; | 59 }; |
60 | 60 |
61 #endif // CHROME_BROWSER_RENDERER_HOST_SOCKET_STREAM_HOST_H_ | 61 #endif // CHROME_BROWSER_RENDERER_HOST_SOCKET_STREAM_HOST_H_ |
OLD | NEW |