Chromium Code Reviews| Index: content/browser/renderer_host/p2p/socket_host_udp.h |
| diff --git a/content/browser/renderer_host/p2p/socket_host_udp.h b/content/browser/renderer_host/p2p/socket_host_udp.h |
| index 1839663637b7a5dda49f2e44377c1176a549941f..4202c4714d21fa5b79bbf536c9b10caafe326801 100644 |
| --- a/content/browser/renderer_host/p2p/socket_host_udp.h |
| +++ b/content/browser/renderer_host/p2p/socket_host_udp.h |
| @@ -70,8 +70,14 @@ class CONTENT_EXPORT P2PSocketHostUdp : public P2PSocketHost { |
| void HandleReadResult(int result); |
| void DoSend(const PendingPacket& packet); |
| - void OnSend(uint64 packet_id, uint64 tick_received, int result); |
| - void HandleSendResult(uint64 packet_id, uint64 tick_received, int result); |
| + void OnSend(uint64 packet_id, |
|
Sergey Ulanov
2015/09/15 23:38:40
please change this to uint64_t for consistency.
Stefan
2015/09/17 12:39:24
Done.
|
| + int32_t transport_sequence_number, |
| + uint64 tick_received, |
|
Sergey Ulanov
2015/09/15 23:38:40
Use base::TimeTicks here instead of uint64?
Stefan
2015/09/17 12:39:24
Done.
|
| + int result); |
| + void HandleSendResult(uint64 packet_id, |
| + int32_t transport_sequence_number, |
| + uint64 tick_received, |
| + int result); |
| scoped_ptr<net::DatagramServerSocket> socket_; |
| scoped_refptr<net::IOBuffer> recv_buffer_; |