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..fff7b69c65f363874df799f16799c9085bfb5fa0 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 void SetWebRtcRtpPacketCallback( |
+ const WebRtcRtpPacketCallback& callback) OVERRIDE; |
+ virtual void StartRtpDump(bool incoming, bool outgoing) OVERRIDE; |
+ virtual void StopRtpDump(bool incoming, bool outgoing) OVERRIDE; |
#endif |
virtual void ResumeDeferredNavigation(const GlobalRequestID& request_id) |
OVERRIDE; |
@@ -164,6 +171,11 @@ class CONTENT_EXPORT RenderProcessHostImpl |
#if defined(ENABLE_WEBRTC) |
// Fires the webrtc log message callback with |message|, if callback is set. |
void WebRtcLogMessage(const std::string& message); |
+ |
+ void OnRtpPacket(const uint8* packet_header, |
+ size_t header_length, |
+ size_t packet_length, |
+ bool incoming); |
#endif |
scoped_refptr<ScreenOrientationDispatcherHost> |
@@ -412,6 +424,10 @@ class CONTENT_EXPORT RenderProcessHostImpl |
#if defined(ENABLE_WEBRTC) |
base::Callback<void(const std::string&)> webrtc_log_message_callback_; |
+ |
+ WebRtcRtpPacketCallback webrtc_rtp_packet_callback_; |
+ |
+ scoped_refptr<P2PSocketDispatcherHost> p2p_socket_dispatcher_host_; |
#endif |
// Message filter and dispatcher for screen orientation. |