OLD | NEW |
1 // Copyright 2013 The Chromium Authors. All rights reserved. | 1 // Copyright 2013 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 CONTENT_RENDERER_P2P_SOCKET_CLIENT_IMPL_H_ | 5 #ifndef CONTENT_RENDERER_P2P_SOCKET_CLIENT_IMPL_H_ |
6 #define CONTENT_RENDERER_P2P_SOCKET_CLIENT_IMPL_H_ | 6 #define CONTENT_RENDERER_P2P_SOCKET_CLIENT_IMPL_H_ |
7 | 7 |
8 #include <vector> | 8 #include <vector> |
9 | 9 |
10 #include "base/memory/ref_counted.h" | 10 #include "base/memory/ref_counted.h" |
(...skipping 28 matching lines...) Expand all Loading... |
39 P2PSocketClientDelegate* delegate); | 39 P2PSocketClientDelegate* delegate); |
40 | 40 |
41 // Send the |data| to the |address|. | 41 // Send the |data| to the |address|. |
42 virtual void Send(const net::IPEndPoint& address, | 42 virtual void Send(const net::IPEndPoint& address, |
43 const std::vector<char>& data) OVERRIDE; | 43 const std::vector<char>& data) OVERRIDE; |
44 | 44 |
45 // Send the |data| to the |address| using Differentiated Services Code Point | 45 // Send the |data| to the |address| using Differentiated Services Code Point |
46 // |dscp|. | 46 // |dscp|. |
47 virtual void SendWithDscp(const net::IPEndPoint& address, | 47 virtual void SendWithDscp(const net::IPEndPoint& address, |
48 const std::vector<char>& data, | 48 const std::vector<char>& data, |
49 net::DiffServCodePoint dscp) OVERRIDE; | 49 const talk_base::PacketOptions& options) OVERRIDE; |
50 | 50 |
51 // Setting socket options. | 51 // Setting socket options. |
52 virtual void SetOption(P2PSocketOption option, int value) OVERRIDE; | 52 virtual void SetOption(P2PSocketOption option, int value) OVERRIDE; |
53 | 53 |
54 // Must be called before the socket is destroyed. The delegate may | 54 // Must be called before the socket is destroyed. The delegate may |
55 // not be called after |closed_task| is executed. | 55 // not be called after |closed_task| is executed. |
56 virtual void Close() OVERRIDE; | 56 virtual void Close() OVERRIDE; |
57 | 57 |
58 virtual int GetSocketID() const OVERRIDE; | 58 virtual int GetSocketID() const OVERRIDE; |
59 | 59 |
(...skipping 54 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
114 // These two fields are used to identify packets for tracing. | 114 // These two fields are used to identify packets for tracing. |
115 uint32 random_socket_id_; | 115 uint32 random_socket_id_; |
116 uint32 next_packet_id_; | 116 uint32 next_packet_id_; |
117 | 117 |
118 DISALLOW_COPY_AND_ASSIGN(P2PSocketClientImpl); | 118 DISALLOW_COPY_AND_ASSIGN(P2PSocketClientImpl); |
119 }; | 119 }; |
120 | 120 |
121 } // namespace content | 121 } // namespace content |
122 | 122 |
123 #endif // CONTENT_RENDERER_P2P_SOCKET_CLIENT_IMPL_H_ | 123 #endif // CONTENT_RENDERER_P2P_SOCKET_CLIENT_IMPL_H_ |
OLD | NEW |