diff options
author | evan@chromium.org <evan@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2009-05-01 22:37:59 +0000 |
---|---|---|
committer | evan@chromium.org <evan@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2009-05-01 22:37:59 +0000 |
commit | 5f594c011f9da68070a44cf3a97b411efa90d7c3 (patch) | |
tree | 8186524397ef59a08dc07b1b6ad92cfce082d6c2 /chrome/common/ipc_channel_proxy.cc | |
parent | d428c075b54c206d33d177aa926624af7104c52d (diff) | |
download | chromium_src-5f594c011f9da68070a44cf3a97b411efa90d7c3.zip chromium_src-5f594c011f9da68070a44cf3a97b411efa90d7c3.tar.gz chromium_src-5f594c011f9da68070a44cf3a97b411efa90d7c3.tar.bz2 |
posix: add some comments and clean up some IPC channel code.
Review URL: http://codereview.chromium.org/100237
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@15111 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'chrome/common/ipc_channel_proxy.cc')
-rw-r--r-- | chrome/common/ipc_channel_proxy.cc | 7 |
1 files changed, 0 insertions, 7 deletions
diff --git a/chrome/common/ipc_channel_proxy.cc b/chrome/common/ipc_channel_proxy.cc index 47aa89b..7668923 100644 --- a/chrome/common/ipc_channel_proxy.cc +++ b/chrome/common/ipc_channel_proxy.cc @@ -292,13 +292,6 @@ void ChannelProxy::GetClientFileDescriptorMapping(int *src_fd, DCHECK(channel); // Channel must have been created first. channel->GetClientFileDescriptorMapping(src_fd, dest_fd); } - -// We assume that IP::Channel::OnClientConnected() is thread-safe. -void ChannelProxy::OnClientConnected() { - Channel *channel = context_.get()->channel_; - DCHECK(channel); // Channel must have been created first. - channel->OnClientConnected(); -} #endif //----------------------------------------------------------------------------- |