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

Unified Diff: content/browser/renderer_host/p2p/socket_host_udp.h

Issue 1345583004: Wire up transport sequence number and send time. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 5 years, 3 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 side-by-side diff with in-line comments
Download patch
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_;
« no previous file with comments | « no previous file | content/browser/renderer_host/p2p/socket_host_udp.cc » ('j') | content/common/p2p_socket_type.h » ('J')

Powered by Google App Engine
This is Rietveld 408576698