diff options
author | brettw@chromium.org <brettw@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2011-06-01 02:28:21 +0000 |
---|---|---|
committer | brettw@chromium.org <brettw@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2011-06-01 02:28:21 +0000 |
commit | 4fc7de6a74cb57289e1a99ae8ad98043cbe21904 (patch) | |
tree | ff9efc88b0ca3f0ee1b7c7743325bdce8619367e /webkit | |
parent | d2b30cc069846ca3b2500451dcdeabd5128def02 (diff) | |
download | chromium_src-4fc7de6a74cb57289e1a99ae8ad98043cbe21904.zip chromium_src-4fc7de6a74cb57289e1a99ae8ad98043cbe21904.tar.gz chromium_src-4fc7de6a74cb57289e1a99ae8ad98043cbe21904.tar.bz2 |
Add some missing virtual keywords to fix the clang build.
TEST+it compiles
BUG=none
Review URL: http://codereview.chromium.org/7027021
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@87419 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'webkit')
-rw-r--r-- | webkit/plugins/ppapi/ppb_file_io_impl.h | 2 | ||||
-rw-r--r-- | webkit/plugins/ppapi/ppb_file_system_impl.h | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/webkit/plugins/ppapi/ppb_file_io_impl.h b/webkit/plugins/ppapi/ppb_file_io_impl.h index 0fc05c5..32cd6a0 100644 --- a/webkit/plugins/ppapi/ppb_file_io_impl.h +++ b/webkit/plugins/ppapi/ppb_file_io_impl.h @@ -37,7 +37,7 @@ class PPB_FileIO_Impl : public Resource, static PP_Resource Create(PP_Instance instance); // ResourceObjectBase overrides. - ::ppapi::thunk::PPB_FileIO_API* AsPPB_FileIO_API(); + virtual ::ppapi::thunk::PPB_FileIO_API* AsPPB_FileIO_API() OVERRIDE; // PPB_FileIO_API implementation. virtual int32_t Open(PP_Resource file_ref, diff --git a/webkit/plugins/ppapi/ppb_file_system_impl.h b/webkit/plugins/ppapi/ppb_file_system_impl.h index 7ebb86d..73f9019 100644 --- a/webkit/plugins/ppapi/ppb_file_system_impl.h +++ b/webkit/plugins/ppapi/ppb_file_system_impl.h @@ -23,7 +23,7 @@ class PPB_FileSystem_Impl : public Resource, public ::ppapi::thunk::PPB_FileSystem_API { public: PPB_FileSystem_Impl(PluginInstance* instance, PP_FileSystemType_Dev type); - ~PPB_FileSystem_Impl(); + virtual ~PPB_FileSystem_Impl(); static PP_Resource Create(PP_Instance instance, PP_FileSystemType_Dev type); |