From eb9989097eb86b7cc6e535a1d69112b3a38a02c0 Mon Sep 17 00:00:00 2001 From: "jam@chromium.org" Date: Thu, 12 Mar 2009 21:42:52 +0000 Subject: Switch to using one ResourceDispatcher per render process, and move it to ChildThread so that the same code is used by the plugin process (and soon, workers). Review URL: http://codereview.chromium.org/42108 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@11581 0039d316-1c4b-4281-b951-d872f2087c98 --- chrome/common/child_thread.cc | 7 +++++++ 1 file changed, 7 insertions(+) (limited to 'chrome/common/child_thread.cc') diff --git a/chrome/common/child_thread.cc b/chrome/common/child_thread.cc index 7a6e39c..237e53c 100644 --- a/chrome/common/child_thread.cc +++ b/chrome/common/child_thread.cc @@ -62,6 +62,10 @@ void ChildThread::RemoveRoute(int32 routing_id) { } void ChildThread::OnMessageReceived(const IPC::Message& msg) { + // Resource responses are sent to the resource dispatcher. + if (resource_dispatcher_->OnMessageReceived(msg)) + return; + if (msg.routing_id() == MSG_ROUTING_CONTROL) { OnControlMessageReceived(msg); } else { @@ -80,6 +84,8 @@ void ChildThread::Init() { #ifdef IPC_MESSAGE_LOG_ENABLED IPC::Logging::current()->SetIPCSender(this); #endif + + resource_dispatcher_.reset(new ResourceDispatcher(this)); } void ChildThread::CleanUp() { @@ -89,4 +95,5 @@ void ChildThread::CleanUp() { // Need to destruct the SyncChannel to the browser before we go away because // it caches a pointer to this thread. channel_.reset(); + resource_dispatcher_.reset(); } -- cgit v1.1