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. |