diff options
author | estade@chromium.org <estade@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2009-07-21 21:06:23 +0000 |
---|---|---|
committer | estade@chromium.org <estade@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2009-07-21 21:06:23 +0000 |
commit | 421d1cd06fb54c660e0f251df5a0d6403a214670 (patch) | |
tree | 174505a79267a4ac711bb20f4730f8c8f65f81ad /chrome/common/ipc_channel_proxy.h | |
parent | 830853df6093d39820366da09a18296097335d56 (diff) | |
download | chromium_src-421d1cd06fb54c660e0f251df5a0d6403a214670.zip chromium_src-421d1cd06fb54c660e0f251df5a0d6403a214670.tar.gz chromium_src-421d1cd06fb54c660e0f251df5a0d6403a214670.tar.bz2 |
Revert r21117 as it caused reliability failures.
Also included in this revert: r21165, r21180, and a couple valgrind suppression edits
TBR=huanr
Review URL: http://codereview.chromium.org/155876
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@21216 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'chrome/common/ipc_channel_proxy.h')
-rw-r--r-- | chrome/common/ipc_channel_proxy.h | 4 |
1 files changed, 0 insertions, 4 deletions
diff --git a/chrome/common/ipc_channel_proxy.h b/chrome/common/ipc_channel_proxy.h index 3725ab1..8adcb5b 100644 --- a/chrome/common/ipc_channel_proxy.h +++ b/chrome/common/ipc_channel_proxy.h @@ -117,9 +117,6 @@ class ChannelProxy : public Message::Sender { void AddFilter(MessageFilter* filter); void RemoveFilter(MessageFilter* filter); - // Called to clear the pointer to the IPC message loop when it's going away. - void ClearIPCMessageLoop(); - #if defined(OS_POSIX) // Calls through to the underlying channel's methods. // TODO(playmobil): For now this is only implemented in the case of @@ -143,7 +140,6 @@ class ChannelProxy : public Message::Sender { Context(Channel::Listener* listener, MessageFilter* filter, MessageLoop* ipc_thread); virtual ~Context() { } - void ClearIPCMessageLoop() { ipc_message_loop_ = NULL; } MessageLoop* ipc_message_loop() const { return ipc_message_loop_; } const std::string& channel_id() const { return channel_id_; } |