diff options
author | phajdan.jr@chromium.org <phajdan.jr@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2013-02-05 09:24:56 +0000 |
---|---|---|
committer | phajdan.jr@chromium.org <phajdan.jr@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2013-02-05 09:24:56 +0000 |
commit | 0672752c1c1e433b2d1bc4e4f487f528aec25f5c (patch) | |
tree | 456076af3b7794f085aa9f444b1808f115116307 /ipc | |
parent | f9644ccd38835611b68adfaab7071366a3aaf208 (diff) | |
download | chromium_src-0672752c1c1e433b2d1bc4e4f487f528aec25f5c.zip chromium_src-0672752c1c1e433b2d1bc4e4f487f528aec25f5c.tar.gz chromium_src-0672752c1c1e433b2d1bc4e4f487f528aec25f5c.tar.bz2 |
GTTF: Add missing virtual destructors.
R=jar
TBR=darin,satorux,fischman,jamesr,sky
BUG=45135
Review URL: https://codereview.chromium.org/12086018
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@180669 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'ipc')
-rw-r--r-- | ipc/ipc_channel_proxy.h | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/ipc/ipc_channel_proxy.h b/ipc/ipc_channel_proxy.h index e4cd83a..8ea6734 100644 --- a/ipc/ipc_channel_proxy.h +++ b/ipc/ipc_channel_proxy.h @@ -113,6 +113,8 @@ class IPC_EXPORT ChannelProxy : public Sender, public base::NonThreadSafe { // re-write the message. Used mainly for testing. class OutgoingMessageFilter { public: + virtual ~OutgoingMessageFilter() { } + // Returns a re-written message, freeing the original, or simply the // original unchanged if no rewrite indicated. virtual Message *Rewrite(Message *message) = 0; |