From 7a1f7c6f6c982287b3f6bb2acded619f3824416c Mon Sep 17 00:00:00 2001 From: "brettw@chromium.org" Date: Tue, 10 May 2011 21:17:48 +0000 Subject: Make the Pepper proxy support in-process font rendering. This implements a WebKit thread in the PPAPI plugin process so we can do the font calls without IPC. The existing font support was refactored into a virtual class (to prevent PPAPI from depending on WebKit and creating a circular GYP dependency). This moves the renderer sandbox support into content/common so that it can be used by the PPAPI process. Review URL: http://codereview.chromium.org/6981001 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@84856 0039d316-1c4b-4281-b951-d872f2087c98 --- webkit/plugins/ppapi/plugin_module.cc | 7 +++++++ 1 file changed, 7 insertions(+) (limited to 'webkit/plugins/ppapi/plugin_module.cc') diff --git a/webkit/plugins/ppapi/plugin_module.cc b/webkit/plugins/ppapi/plugin_module.cc index f22ca92..6d4543f 100644 --- a/webkit/plugins/ppapi/plugin_module.cc +++ b/webkit/plugins/ppapi/plugin_module.cc @@ -105,6 +105,7 @@ #include "webkit/plugins/ppapi/ppb_widget_impl.h" #include "webkit/plugins/ppapi/resource_tracker.h" #include "webkit/plugins/ppapi/var.h" +#include "webkit/plugins/ppapi/webkit_forwarding_impl.h" #ifdef ENABLE_GPU #include "webkit/plugins/ppapi/ppb_context_3d_impl.h" @@ -562,6 +563,12 @@ PluginDelegate::PpapiBroker* PluginModule::GetBroker(){ return broker_; } +pp::shared_impl::WebKitForwarding* PluginModule::GetWebKitForwarding() { + if (!webkit_forwarding_.get()) + webkit_forwarding_.reset(new WebKitForwardingImpl); + return webkit_forwarding_.get(); +} + bool PluginModule::InitializeModule() { DCHECK(!out_of_process_proxy_.get()) << "Don't call for proxied modules."; int retval = entry_points_.initialize_module(pp_module(), &GetInterface); -- cgit v1.1