From 4b4172299b3b74557ba20d3d8c87d811cf502f39 Mon Sep 17 00:00:00 2001 From: "levin@chromium.org" Date: Fri, 22 Oct 2010 00:48:15 +0000 Subject: Revert "Const-ify RefCountedThreadSafe::AddRef and Release." This reverts commit b7ce919957536ceb0cfac1709bc779fd086b6ce8. git-svn-id: svn://svn.chromium.org/chrome/trunk/src@63459 0039d316-1c4b-4281-b951-d872f2087c98 --- ipc/ipc_channel_proxy.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'ipc/ipc_channel_proxy.h') diff --git a/ipc/ipc_channel_proxy.h b/ipc/ipc_channel_proxy.h index 53a39b4..1ce9986 100644 --- a/ipc/ipc_channel_proxy.h +++ b/ipc/ipc_channel_proxy.h @@ -87,11 +87,11 @@ class ChannelProxy : public Message::Sender { // Called when the message filter is about to be deleted. This gives // derived classes the option of controlling which thread they're deleted // on etc. - virtual void OnDestruct() const; + virtual void OnDestruct(); }; struct MessageFilterTraits { - static void Destruct(const MessageFilter* filter) { + static void Destruct(MessageFilter* filter) { filter->OnDestruct(); } }; -- cgit v1.1