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

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: Matching changes in .h file. 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..47e3f33c7c656c60b0f9c8de1492b0d16896e02c 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_t packet_id,
+ int32_t transport_sequence_number,
+ base::TimeTicks time_received,
+ int result);
+ void HandleSendResult(uint64_t packet_id,
+ int32_t transport_sequence_number,
+ base::TimeTicks time_received,
+ int result);
scoped_ptr<net::DatagramServerSocket> socket_;
scoped_refptr<net::IOBuffer> recv_buffer_;

Powered by Google App Engine
This is Rietveld 408576698