diff options
author | evanm@google.com <evanm@google.com@0039d316-1c4b-4281-b951-d872f2087c98> | 2008-09-08 20:45:40 +0000 |
---|---|---|
committer | evanm@google.com <evanm@google.com@0039d316-1c4b-4281-b951-d872f2087c98> | 2008-09-08 20:45:40 +0000 |
commit | 0a107b357c4d8a58085f46a98af51d7414ab6c76 (patch) | |
tree | 1d99b712a4d425c9a833b1cb68d90c1dfa3bcbc6 /webkit/glue/webplugin_delegate.h | |
parent | 2964020f490c8ccd2fa24151ca68b8b90fc1296e (diff) | |
download | chromium_src-0a107b357c4d8a58085f46a98af51d7414ab6c76.zip chromium_src-0a107b357c4d8a58085f46a98af51d7414ab6c76.tar.gz chromium_src-0a107b357c4d8a58085f46a98af51d7414ab6c76.tar.bz2 |
fix build issue on Linux with GCC 4.1.2
related to non-virtual destructors in classes having virtual methods
BUG=1859
Patch from Paweł Hajdan jr <phajdan.jr@gmail.com>.
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@1860 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'webkit/glue/webplugin_delegate.h')
-rw-r--r-- | webkit/glue/webplugin_delegate.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/webkit/glue/webplugin_delegate.h b/webkit/glue/webplugin_delegate.h index 56ab4c9..33990b3 100644 --- a/webkit/glue/webplugin_delegate.h +++ b/webkit/glue/webplugin_delegate.h @@ -23,6 +23,7 @@ class WebPluginResourceClient; class WebPluginDelegate { public: WebPluginDelegate() {} + virtual ~WebPluginDelegate() {} // Initializes the plugin implementation with the given (UTF8) arguments. // Note that the lifetime of WebPlugin must be longer than this delegate. |