Index: content/browser/ppapi_plugin_process_host.cc |
diff --git a/content/browser/ppapi_plugin_process_host.cc b/content/browser/ppapi_plugin_process_host.cc |
index 10719d0d393df416e7d9a7ab16edfd717cc40ef2..1817c762d239b812fe1193dd63223d127a4a5b0d 100644 |
--- a/content/browser/ppapi_plugin_process_host.cc |
+++ b/content/browser/ppapi_plugin_process_host.cc |
@@ -36,6 +36,7 @@ |
#include "ui/base/ui_base_switches.h" |
#if defined(OS_WIN) |
+#include "content/browser/renderer_host/dwrite_font_proxy_message_filter_win.h" |
#include "content/common/sandbox_win.h" |
#include "sandbox/win/src/process_mitigations.h" |
#include "sandbox/win/src/sandbox_policy.h" |
@@ -299,6 +300,9 @@ PpapiPluginProcessHost::PpapiPluginProcessHost( |
filter_ = new PepperMessageFilter(); |
process_->AddFilter(filter_.get()); |
process_->GetHost()->AddFilter(host_impl_->message_filter().get()); |
+#if defined(OS_WIN) |
+ process_->AddFilter(new DWriteFontProxyMessageFilter()); |
+#endif |
GetContentClient()->browser()->DidCreatePpapiPlugin(host_impl_.get()); |