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

Unified Diff: content/public/browser/render_process_host.h

Issue 264793017: Implements RTP header dumping. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: fix leak Created 6 years, 7 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/public/browser/render_process_host.h
diff --git a/content/public/browser/render_process_host.h b/content/public/browser/render_process_host.h
index 66a96eca5c6aca95d61c3ce68656669350f7c3fb..ba6bf6e8c03882e25647c2a535d73d3c5e9f5651 100644
--- a/content/public/browser/render_process_host.h
+++ b/content/public/browser/render_process_host.h
@@ -205,6 +205,21 @@ class CONTENT_EXPORT RenderProcessHost : public IPC::Sender,
// process associated with this RenderProcessHost.
virtual void SetWebRtcLogMessageCallback(
base::Callback<void(const std::string&)> callback) = 0;
+
+ typedef base::Callback<void(const uint8* packet_header,
+ size_t header_length,
+ size_t packet_length,
+ bool incoming)> WebRtcRtpPacketCallback;
+
+ typedef base::Callback<void(bool incoming, bool outgoing)>
+ WebRtcStopRtpDumpCallback;
+
+ // Starts passing RTP packets to |packet_callback| and returns the callback
+ // used to stop dumping.
+ virtual WebRtcStopRtpDumpCallback StartRtpDump(
+ bool incoming,
+ bool outgoing,
+ const WebRtcRtpPacketCallback& packet_callback) = 0;
#endif
// Tells the ResourceDispatcherHost to resume a deferred navigation without
« no previous file with comments | « content/browser/renderer_host/render_process_host_impl.cc ('k') | content/public/test/mock_render_process_host.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698