From cb4fdad54e38d2c0c30ab47492cfbe266bef07ad Mon Sep 17 00:00:00 2001 From: "brettw@chromium.org" Date: Mon, 27 Jun 2011 22:25:29 +0000 Subject: Add virtual destructors for the Pepper API thunks. TEST=it compiles BUG=86132 Review URL: http://codereview.chromium.org/7227003 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@90658 0039d316-1c4b-4281-b951-d872f2087c98 --- ppapi/thunk/ppb_url_loader_api.h | 2 ++ 1 file changed, 2 insertions(+) (limited to 'ppapi/thunk/ppb_url_loader_api.h') diff --git a/ppapi/thunk/ppb_url_loader_api.h b/ppapi/thunk/ppb_url_loader_api.h index cd44c26..5f9e58d 100644 --- a/ppapi/thunk/ppb_url_loader_api.h +++ b/ppapi/thunk/ppb_url_loader_api.h @@ -13,6 +13,8 @@ namespace thunk { class PPB_URLLoader_API { public: + virtual ~PPB_URLLoader_API() {} + virtual int32_t Open(PP_Resource request_id, PP_CompletionCallback callback) = 0; virtual int32_t FollowRedirect(PP_CompletionCallback callback) = 0; -- cgit v1.1