diff options
author | rsleevi@chromium.org <rsleevi@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2012-04-28 06:36:15 +0000 |
---|---|---|
committer | rsleevi@chromium.org <rsleevi@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2012-04-28 06:36:15 +0000 |
commit | 69d5c51f4e36b7de5e89a2eab2d1fd179e4f4a27 (patch) | |
tree | 26e7e6c146725e92e66e1226a727add18fa563bc /content/renderer/plugin_channel_host.cc | |
parent | 355b853894c91bc1822d0737d55a5883d865d839 (diff) | |
download | chromium_src-69d5c51f4e36b7de5e89a2eab2d1fd179e4f4a27.zip chromium_src-69d5c51f4e36b7de5e89a2eab2d1fd179e4f4a27.tar.gz chromium_src-69d5c51f4e36b7de5e89a2eab2d1fd179e4f4a27.tar.bz2 |
RefCounted types should not have public destructors, content/browser part 2
BUG=123295
TEST=none
TBR=brettw
Review URL: https://chromiumcodereview.appspot.com/10071038
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@134446 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'content/renderer/plugin_channel_host.cc')
-rw-r--r-- | content/renderer/plugin_channel_host.cc | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/content/renderer/plugin_channel_host.cc b/content/renderer/plugin_channel_host.cc index e055852..f9f384e 100644 --- a/content/renderer/plugin_channel_host.cc +++ b/content/renderer/plugin_channel_host.cc @@ -1,4 +1,4 @@ -// Copyright (c) 2011 The Chromium Authors. All rights reserved. +// Copyright (c) 2012 The Chromium Authors. All rights reserved. // Use of this source code is governed by a BSD-style license that can be // found in the LICENSE file. @@ -29,6 +29,9 @@ class IsListeningFilter : public IPC::ChannelProxy::MessageFilter { static bool is_listening_; + protected: + virtual ~IsListeningFilter() {} + private: IPC::Channel* channel_; |