Reland r101259 after fixing shared-library build issues.
Removed the dependency of PepperPluginRegistry on Pepper proxy.
We would need to move PepperPluginRegistry to webkit/plugins/ppapi so that it can be used by test_shell. But before we can move it, we need to remove all dependencies on content and pepper/proxy.
TEST=Manually ran pepper 3d demos in-process and out-of-process.
[email protected]
Review URL: http://codereview.chromium.org/7912001
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@101306 0039d316-1c4b-4281-b951-d872f2087c98
diff --git a/ppapi/proxy/proxy_channel.h b/ppapi/proxy/proxy_channel.h
index 744d087c..89d81ae 100644
--- a/ppapi/proxy/proxy_channel.h
+++ b/ppapi/proxy/proxy_channel.h
@@ -32,8 +32,10 @@
public:
typedef void (*ShutdownModuleFunc)();
- class Delegate {
+ class PPAPI_PROXY_EXPORT Delegate {
public:
+ virtual ~Delegate() {}
+
// Returns the dedicated message loop for processing IPC requests.
virtual base::MessageLoopProxy* GetIPCMessageLoop() = 0;