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.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.h')
-rw-r--r-- | webkit/glue/webplugin.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/webkit/glue/webplugin.h b/webkit/glue/webplugin.h index 2e5268b..df634e4 100644 --- a/webkit/glue/webplugin.h +++ b/webkit/glue/webplugin.h @@ -133,6 +133,7 @@ class WebPlugin { // Simpler version of ResourceHandleClient that lends itself to proxying. class WebPluginResourceClient { public: + virtual ~WebPluginResourceClient() {} virtual void WillSendRequest(const GURL& url) = 0; virtual void DidReceiveResponse(const std::string& mime_type, const std::string& headers, |