| Index: content/browser/renderer_host/media/peer_connection_tracker_host.h
|
| diff --git a/content/browser/renderer_host/media/peer_connection_tracker_host.h b/content/browser/renderer_host/media/peer_connection_tracker_host.h
|
| index 53a96302e04bf3b7c52d2de792ada290a6d82267..53926f87c8191f2d1b879ac62c5a3b6b1f9ba45f 100644
|
| --- a/content/browser/renderer_host/media/peer_connection_tracker_host.h
|
| +++ b/content/browser/renderer_host/media/peer_connection_tracker_host.h
|
| @@ -19,6 +19,8 @@ class ListValue;
|
|
|
| namespace content {
|
|
|
| +class WebRTCEventLogHost;
|
| +
|
| // This class is the host for PeerConnectionTracker in the browser process
|
| // managed by RenderProcessHostImpl. It receives PeerConnection events from
|
| // PeerConnectionTracker as IPC messages that it forwards to WebRTCInternals.
|
| @@ -26,7 +28,8 @@ namespace content {
|
| class PeerConnectionTrackerHost : public BrowserMessageFilter,
|
| public base::PowerObserver {
|
| public:
|
| - explicit PeerConnectionTrackerHost(int render_process_id);
|
| + PeerConnectionTrackerHost(int render_process_id,
|
| + WebRTCEventLogHost* event_log_host);
|
|
|
| // content::BrowserMessageFilter override.
|
| bool OnMessageReceived(const IPC::Message& message) override;
|
| @@ -57,6 +60,8 @@ class PeerConnectionTrackerHost : public BrowserMessageFilter,
|
|
|
| int render_process_id_;
|
|
|
| + WebRTCEventLogHost* const event_log_host_;
|
| +
|
| DISALLOW_COPY_AND_ASSIGN(PeerConnectionTrackerHost);
|
| };
|
|
|
|
|