Bug 729135: Fix virtual function warnings in core plugin code. r=bsmedberg

This commit is contained in:
Josh Aas 2012-02-22 00:19:27 -05:00
parent 552d8a015d
commit b07c58481d
2 changed files with 4 additions and 1 deletions

View File

@ -688,7 +688,7 @@ protected:
public:
nsNPAPIStreamWrapper(nsIOutputStream* stream);
~nsNPAPIStreamWrapper();
virtual ~nsNPAPIStreamWrapper();
void GetStream(nsIOutputStream* &result);
NPStream* GetNPStream() { return &fNPStream; }

View File

@ -1335,6 +1335,9 @@ public:
{
}
ChannelRedirectProxyCallback() {}
virtual ~ChannelRedirectProxyCallback() {}
NS_DECL_ISUPPORTS
NS_IMETHODIMP OnRedirectVerifyCallback(nsresult result)