Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(278)

Side by Side Diff: content/browser/renderer_host/render_process_host_impl.cc

Issue 264793017: Implements RTP header dumping. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 6 years, 7 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
OLDNEW
1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. 1 // Copyright (c) 2012 The Chromium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be 2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file. 3 // found in the LICENSE file.
4 4
5 // Represents the browser side of the browser <--> renderer communication 5 // Represents the browser side of the browser <--> renderer communication
6 // channel. There will be one RenderProcessHost per renderer process. 6 // channel. There will be one RenderProcessHost per renderer process.
7 7
8 #include "content/browser/renderer_host/render_process_host_impl.h" 8 #include "content/browser/renderer_host/render_process_host_impl.h"
9 9
10 #include <algorithm> 10 #include <algorithm>
(...skipping 789 matching lines...) Expand 10 before | Expand all | Expand 10 after
800 storage_partition_impl_->GetAppCacheService(), 800 storage_partition_impl_->GetAppCacheService(),
801 storage_partition_impl_->GetQuotaManager(), 801 storage_partition_impl_->GetQuotaManager(),
802 storage_partition_impl_->GetFileSystemContext(), 802 storage_partition_impl_->GetFileSystemContext(),
803 storage_partition_impl_->GetDatabaseTracker(), 803 storage_partition_impl_->GetDatabaseTracker(),
804 storage_partition_impl_->GetIndexedDBContext(), 804 storage_partition_impl_->GetIndexedDBContext(),
805 storage_partition_impl_->GetServiceWorkerContext()), 805 storage_partition_impl_->GetServiceWorkerContext()),
806 message_port_message_filter_)); 806 message_port_message_filter_));
807 } 807 }
808 808
809 #if defined(ENABLE_WEBRTC) 809 #if defined(ENABLE_WEBRTC)
810 AddFilter(new P2PSocketDispatcherHost( 810 p2p_socket_dispatcher_host_ = new P2PSocketDispatcherHost(
811 resource_context, 811 resource_context,
812 browser_context->GetRequestContextForRenderProcess(GetID()))); 812 browser_context->GetRequestContextForRenderProcess(GetID()));
813 AddFilter(p2p_socket_dispatcher_host_);
813 #endif 814 #endif
814 815
815 AddFilter(new TraceMessageFilter()); 816 AddFilter(new TraceMessageFilter());
816 AddFilter(new ResolveProxyMsgHelper( 817 AddFilter(new ResolveProxyMsgHelper(
817 browser_context->GetRequestContextForRenderProcess(GetID()))); 818 browser_context->GetRequestContextForRenderProcess(GetID())));
818 AddFilter(new QuotaDispatcherHost( 819 AddFilter(new QuotaDispatcherHost(
819 GetID(), 820 GetID(),
820 storage_partition_impl_->GetQuotaManager(), 821 storage_partition_impl_->GetQuotaManager(),
821 GetContentClient()->browser()->CreateQuotaPermissionContext())); 822 GetContentClient()->browser()->CreateQuotaPermissionContext()));
822 AddFilter(new GamepadBrowserMessageFilter()); 823 AddFilter(new GamepadBrowserMessageFilter());
(...skipping 681 matching lines...) Expand 10 before | Expand all | Expand 10 after
1504 BrowserThread::FILE, FROM_HERE, 1505 BrowserThread::FILE, FROM_HERE,
1505 base::Bind(&DisableAecDumpOnFileThread), 1506 base::Bind(&DisableAecDumpOnFileThread),
1506 base::Bind(&RenderProcessHostImpl::SendDisableAecDumpToRenderer, 1507 base::Bind(&RenderProcessHostImpl::SendDisableAecDumpToRenderer,
1507 weak_factory_.GetWeakPtr())); 1508 weak_factory_.GetWeakPtr()));
1508 } 1509 }
1509 1510
1510 void RenderProcessHostImpl::SetWebRtcLogMessageCallback( 1511 void RenderProcessHostImpl::SetWebRtcLogMessageCallback(
1511 base::Callback<void(const std::string&)> callback) { 1512 base::Callback<void(const std::string&)> callback) {
1512 webrtc_log_message_callback_ = callback; 1513 webrtc_log_message_callback_ = callback;
1513 } 1514 }
1515
1516 RenderProcessHostImpl::WebRtcStopRtpDumpCallback
1517 RenderProcessHostImpl::StartRtpDump(
1518 bool incoming,
1519 bool outgoing,
1520 const WebRtcRtpPacketCallback& packet_callback) {
1521 if (!p2p_socket_dispatcher_host_)
1522 return WebRtcStopRtpDumpCallback();
1523
1524 BrowserThread::PostTask(BrowserThread::IO,
1525 FROM_HERE,
1526 base::Bind(&P2PSocketDispatcherHost::StartRtpDump,
1527 p2p_socket_dispatcher_host_,
1528 incoming,
1529 outgoing,
1530 packet_callback));
1531
1532 return base::Bind(&P2PSocketDispatcherHost::StopRtpDumpOnUIThread,
1533 p2p_socket_dispatcher_host_);
1534 }
1514 #endif 1535 #endif
1515 1536
1516 IPC::ChannelProxy* RenderProcessHostImpl::GetChannel() { 1537 IPC::ChannelProxy* RenderProcessHostImpl::GetChannel() {
1517 return channel_.get(); 1538 return channel_.get();
1518 } 1539 }
1519 1540
1520 void RenderProcessHostImpl::AddFilter(BrowserMessageFilter* filter) { 1541 void RenderProcessHostImpl::AddFilter(BrowserMessageFilter* filter) {
1521 channel_->AddFilter(filter->GetFilter()); 1542 channel_->AddFilter(filter->GetFilter());
1522 } 1543 }
1523 1544
(...skipping 551 matching lines...) Expand 10 before | Expand all | Expand 10 after
2075 mojo::ScopedMessagePipeHandle handle) { 2096 mojo::ScopedMessagePipeHandle handle) {
2076 mojo_activation_required_ = true; 2097 mojo_activation_required_ = true;
2077 MaybeActivateMojo(); 2098 MaybeActivateMojo();
2078 2099
2079 mojo::AllocationScope scope; 2100 mojo::AllocationScope scope;
2080 mojo_application_host_->shell_client()->AcceptConnection(service_name, 2101 mojo_application_host_->shell_client()->AcceptConnection(service_name,
2081 handle.Pass()); 2102 handle.Pass());
2082 } 2103 }
2083 2104
2084 } // namespace content 2105 } // namespace content
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698