summaryrefslogtreecommitdiffstats
path: root/chrome/renderer/plugin_channel_host.h
diff options
context:
space:
mode:
authorjam@chromium.org <jam@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2009-11-05 23:37:05 +0000
committerjam@chromium.org <jam@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2009-11-05 23:37:05 +0000
commit422c0f17466cddf30fd6815f9d3519a3815264c6 (patch)
tree416182cac3cc9968888273a8e68e58e51b45358c /chrome/renderer/plugin_channel_host.h
parentbfe5c69fc8cd05558fa5571ff8699a5b0edf0a64 (diff)
downloadchromium_src-422c0f17466cddf30fd6815f9d3519a3815264c6.zip
chromium_src-422c0f17466cddf30fd6815f9d3519a3815264c6.tar.gz
chromium_src-422c0f17466cddf30fd6815f9d3519a3815264c6.tar.bz2
Fourth patch in making destructors of refcounted objects private.
BUG=26749 Review URL: http://codereview.chromium.org/360043 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@31167 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'chrome/renderer/plugin_channel_host.h')
-rw-r--r--chrome/renderer/plugin_channel_host.h3
1 files changed, 1 insertions, 2 deletions
diff --git a/chrome/renderer/plugin_channel_host.h b/chrome/renderer/plugin_channel_host.h
index f3d066b..b37ab99 100644
--- a/chrome/renderer/plugin_channel_host.h
+++ b/chrome/renderer/plugin_channel_host.h
@@ -17,8 +17,6 @@ class PluginChannelHost : public PluginChannelBase {
static PluginChannelHost* GetPluginChannelHost(
const std::string& channel_name, MessageLoop* ipc_message_loop);
- ~PluginChannelHost();
-
virtual bool Init(MessageLoop* ipc_message_loop, bool create_pipe_now);
int GenerateRouteID();
@@ -40,6 +38,7 @@ class PluginChannelHost : public PluginChannelBase {
private:
// Called on the render thread
PluginChannelHost();
+ ~PluginChannelHost();
static PluginChannelBase* ClassFactory() { return new PluginChannelHost(); }