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

Unified Diff: content/browser/renderer_host/render_process_host_impl.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/browser/renderer_host/render_process_host_impl.h
diff --git a/content/browser/renderer_host/render_process_host_impl.h b/content/browser/renderer_host/render_process_host_impl.h
index d0f9e96cde5c7c01f4df19ecd1241457ce433625..acf4eaf8d6df44b88e7ce13d10e65c2d67f217b3 100644
--- a/content/browser/renderer_host/render_process_host_impl.h
+++ b/content/browser/renderer_host/render_process_host_impl.h
@@ -39,6 +39,9 @@ class BrowserDemuxerAndroid;
class GpuMessageFilter;
class MessagePortMessageFilter;
class MojoApplicationHost;
+#if defined(ENABLE_WEBRTC)
+class P2PSocketDispatcherHost;
+#endif
class PeerConnectionTrackerHost;
class RendererMainThread;
class RenderProcessHostMojoImpl;
@@ -126,6 +129,10 @@ class CONTENT_EXPORT RenderProcessHostImpl
virtual void DisableAecDump() OVERRIDE;
virtual void SetWebRtcLogMessageCallback(
base::Callback<void(const std::string&)> callback) OVERRIDE;
+ virtual WebRtcStopRtpDumpCallback StartRtpDump(
+ bool incoming,
+ bool outgoing,
+ const WebRtcRtpPacketCallback& packet_callback) OVERRIDE;
#endif
virtual void ResumeDeferredNavigation(const GlobalRequestID& request_id)
OVERRIDE;
@@ -412,6 +419,10 @@ class CONTENT_EXPORT RenderProcessHostImpl
#if defined(ENABLE_WEBRTC)
base::Callback<void(const std::string&)> webrtc_log_message_callback_;
+
+ scoped_refptr<P2PSocketDispatcherHost> p2p_socket_dispatcher_host_;
+
+ WebRtcStopRtpDumpCallback stop_rtp_dump_callback_;
#endif
// Message filter and dispatcher for screen orientation.
« no previous file with comments | « content/browser/renderer_host/p2p/socket_host_udp.cc ('k') | content/browser/renderer_host/render_process_host_impl.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698