diff options
author | brettw@chromium.org <brettw@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2012-07-03 20:36:25 +0000 |
---|---|---|
committer | brettw@chromium.org <brettw@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2012-07-03 20:36:25 +0000 |
commit | 970beadd706c6ad9db208abaafb8be9b66145382 (patch) | |
tree | 3b5ca26affda3ef5272676eeb70513ff5e544d39 /webkit/plugins/ppapi/resource_creation_impl.h | |
parent | bfae6cfbbb2889fecc6c2d32ae9796233184ad48 (diff) | |
download | chromium_src-970beadd706c6ad9db208abaafb8be9b66145382.zip chromium_src-970beadd706c6ad9db208abaafb8be9b66145382.tar.gz chromium_src-970beadd706c6ad9db208abaafb8be9b66145382.tar.bz2 |
Hook up content/renderer to the PPAPI host.
This hooks up the machinery in content/renderer to the PPAPI host infrastructure. Nothing uses this yet.
This will allow us to implement resources in content/renderer/pepper via the new resource creation impl. The new in-process resource creation will allow new-style IPC-only resources to be created in-process
Review URL: https://chromiumcodereview.appspot.com/10578043
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@145371 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'webkit/plugins/ppapi/resource_creation_impl.h')
-rw-r--r-- | webkit/plugins/ppapi/resource_creation_impl.h | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/webkit/plugins/ppapi/resource_creation_impl.h b/webkit/plugins/ppapi/resource_creation_impl.h index 4108455..9c5a97c 100644 --- a/webkit/plugins/ppapi/resource_creation_impl.h +++ b/webkit/plugins/ppapi/resource_creation_impl.h @@ -8,13 +8,15 @@ #include "base/basictypes.h" #include "base/compiler_specific.h" #include "ppapi/thunk/resource_creation_api.h" +#include "webkit/plugins/webkit_plugins_export.h" namespace webkit { namespace ppapi { class PluginInstance; -class ResourceCreationImpl : public ::ppapi::thunk::ResourceCreationAPI { +class WEBKIT_PLUGINS_EXPORT ResourceCreationImpl + : public NON_EXPORTED_BASE(::ppapi::thunk::ResourceCreationAPI) { public: explicit ResourceCreationImpl(PluginInstance* instance); virtual ~ResourceCreationImpl(); |