diff options
author | eroman@chromium.org <eroman@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2014-01-11 03:22:14 +0000 |
---|---|---|
committer | eroman@chromium.org <eroman@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2014-01-11 03:22:14 +0000 |
commit | c040a9ad570afac2d90b19a95b3d2c88c68f2684 (patch) | |
tree | 9372646bd7b94126b82d6944bdcb0e7770ae7daf /ipc | |
parent | eaf7e568d2c8155201efe3fbe59c050476055014 (diff) | |
download | chromium_src-c040a9ad570afac2d90b19a95b3d2c88c68f2684.zip chromium_src-c040a9ad570afac2d90b19a95b3d2c88c68f2684.tar.gz chromium_src-c040a9ad570afac2d90b19a95b3d2c88c68f2684.tar.bz2 |
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
Diffstat (limited to 'ipc')
-rw-r--r-- | ipc/ipc_channel_proxy.cc | 4 |
1 files changed, 0 insertions, 4 deletions
diff --git a/ipc/ipc_channel_proxy.cc b/ipc/ipc_channel_proxy.cc index 18ed304..193b62c 100644 --- a/ipc/ipc_channel_proxy.cc +++ b/ipc/ipc_channel_proxy.cc @@ -93,10 +93,6 @@ bool ChannelProxy::Context::OnMessageReceived(const Message& message) { // Called on the IPC::Channel thread 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( FROM_HERE, base::Bind(&Context::OnDispatchMessage, this, message)); return true; |