| Index: trunk/src/content/browser/renderer_host/render_process_host_impl.cc
|
| ===================================================================
|
| --- trunk/src/content/browser/renderer_host/render_process_host_impl.cc (revision 247547)
|
| +++ trunk/src/content/browser/renderer_host/render_process_host_impl.cc (working copy)
|
| @@ -1516,11 +1516,6 @@
|
| base::Bind(&RenderProcessHostImpl::SendDisableAecDumpToRenderer,
|
| weak_factory_.GetWeakPtr()));
|
| }
|
| -
|
| -void RenderProcessHostImpl::SetWebRtcLogMessageCallback(
|
| - base::Callback<void(const std::string&)> callback) {
|
| - webrtc_log_message_callback_ = callback;
|
| -}
|
| #endif
|
|
|
| IPC::ChannelProxy* RenderProcessHostImpl::GetChannel() {
|
| @@ -1887,14 +1882,6 @@
|
| route_id));
|
| }
|
|
|
| -#if defined(ENABLE_WEBRTC)
|
| -void RenderProcessHostImpl::WebRtcLogMessage(const std::string& message) {
|
| - DCHECK(BrowserThread::CurrentlyOn(BrowserThread::UI));
|
| - if (!webrtc_log_message_callback_.is_null())
|
| - webrtc_log_message_callback_.Run(message);
|
| -}
|
| -#endif
|
| -
|
| void RenderProcessHostImpl::OnShutdownRequest() {
|
| // Don't shut down if there are active RenderViews, or if there are pending
|
| // RenderViews being swapped back in.
|
|
|