diff options
author | hans@chromium.org <hans@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2012-08-09 20:39:12 +0000 |
---|---|---|
committer | hans@chromium.org <hans@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2012-08-09 20:39:12 +0000 |
commit | 772a5b29a64d3490ea0cae5ee28b02d503b74a8d (patch) | |
tree | e5a478e6e65f0c8bd66d044177c350ef1d6ea850 /ipc/ipc_channel_proxy.h | |
parent | 7e834f061f001db4d8508cfff4294a15aae19b83 (diff) | |
download | chromium_src-772a5b29a64d3490ea0cae5ee28b02d503b74a8d.zip chromium_src-772a5b29a64d3490ea0cae5ee28b02d503b74a8d.tar.gz chromium_src-772a5b29a64d3490ea0cae5ee28b02d503b74a8d.tar.bz2 |
Clean-up inline members of nested classes (ipc/)
Due to a bug, the Clang-plugin style checker failed to warn about
inline constructors, destructors, non-empty virtual methods, etc.
for nested classes.
The plugin has been fixed, and this patch is part of a clean-up of all
the code that now causes the plugin to issue errors.
BUG=139346
Review URL: https://chromiumcodereview.appspot.com/10825275
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@150891 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'ipc/ipc_channel_proxy.h')
-rw-r--r-- | ipc/ipc_channel_proxy.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/ipc/ipc_channel_proxy.h b/ipc/ipc_channel_proxy.h index cce35f7..9755e13 100644 --- a/ipc/ipc_channel_proxy.h +++ b/ipc/ipc_channel_proxy.h @@ -226,7 +226,7 @@ class IPC_EXPORT ChannelProxy : public Sender { // Called on the consumers thread when the ChannelProxy is closed. At that // point the consumer is telling us that they don't want to receive any // more messages, so we honor that wish by forgetting them! - virtual void Clear() { listener_ = NULL; } + virtual void Clear(); private: friend class ChannelProxy; |