| 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 58a36e0e52c95ae95bb945f4a54838fb7d3a9cac..96f8946188039b2302b4fe8c930771abb8fbc352 100644
|
| --- a/content/browser/renderer_host/media/peer_connection_tracker_host.h
|
| +++ b/content/browser/renderer_host/media/peer_connection_tracker_host.h
|
| @@ -10,7 +10,6 @@
|
| struct PeerConnectionInfo;
|
|
|
| namespace content {
|
| -class WebRTCInternals;
|
|
|
| // This class is the host for PeerConnectionTracker in the browser process
|
| // managed by RenderProcessHostImpl. It passes IPC messages between
|
| @@ -29,7 +28,9 @@ class PeerConnectionTrackerHost : public BrowserMessageFilter {
|
| private:
|
| // Handlers for peer connection messages coming from the renderer.
|
| void OnAddPeerConnection(const PeerConnectionInfo& info);
|
| + void OnAddPeerConnectionOnUIThread(const PeerConnectionInfo& info);
|
| void OnRemovePeerConnection(int lid);
|
| + void OnRemovePeerConnectionOnUIThread(int lid);
|
|
|
| DISALLOW_COPY_AND_ASSIGN(PeerConnectionTrackerHost);
|
| };
|
|
|