Commit c040a9ad authored by eroman@chromium.org's avatar eroman@chromium.org

Remove an outdated comment.

It is obsolete now that the code is using a MessageLoopProxy.

Review URL: https://codereview.chromium.org/133903006

git-svn-id: svn://svn.chromium.org/chrome/trunk/src@244333 0039d316-1c4b-4281-b951-d872f2087c98
parent eaf7e568
...@@ -93,10 +93,6 @@ bool ChannelProxy::Context::OnMessageReceived(const Message& message) { ...@@ -93,10 +93,6 @@ bool ChannelProxy::Context::OnMessageReceived(const Message& message) {
// Called on the IPC::Channel thread // Called on the IPC::Channel thread
bool ChannelProxy::Context::OnMessageReceivedNoFilter(const Message& message) { bool ChannelProxy::Context::OnMessageReceivedNoFilter(const Message& message) {
// NOTE: This code relies on the listener's message loop not going away while
// this thread is active. That should be a reasonable assumption, but it
// feels risky. We may want to invent some more indirect way of referring to
// a MessageLoop if this becomes a problem.
listener_task_runner_->PostTask( listener_task_runner_->PostTask(
FROM_HERE, base::Bind(&Context::OnDispatchMessage, this, message)); FROM_HERE, base::Bind(&Context::OnDispatchMessage, this, message));
return true; return true;
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment