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

Unified Diff: content/renderer/p2p/socket_client_delegate.h

Issue 759923003: Detect situation when there is no missing send completion signal in P2PSocket implementation. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 6 years 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/renderer/p2p/socket_client_delegate.h
diff --git a/content/renderer/p2p/socket_client_delegate.h b/content/renderer/p2p/socket_client_delegate.h
index 204d5cd4aabe5c1b51ecd3b306373bc2ceb7b63a..4652bb7d15c97c8649129b025ccff194f41f0019 100644
--- a/content/renderer/p2p/socket_client_delegate.h
+++ b/content/renderer/p2p/socket_client_delegate.h
@@ -31,7 +31,7 @@ class P2PSocketClientDelegate {
P2PSocketClient* client) = 0;
// Called once for each Send() call after the send is complete.
- virtual void OnSendComplete() = 0;
+ virtual void OnSendComplete(const P2PSendPacketMetrics& send_metrics) = 0;
// Called if an non-retryable error occurs.
virtual void OnError() = 0;

Powered by Google App Engine
This is Rietveld 408576698