Index: content/browser/renderer_host/render_process_host_impl.cc |
diff --git a/content/browser/renderer_host/render_process_host_impl.cc b/content/browser/renderer_host/render_process_host_impl.cc |
index daab2692e1a62867988de10a616ed255498e2938..f539cf022c5559cec8b8ab3ed1ea939850354d5b 100644 |
--- a/content/browser/renderer_host/render_process_host_impl.cc |
+++ b/content/browser/renderer_host/render_process_host_impl.cc |
@@ -185,6 +185,7 @@ |
#if defined(OS_WIN) |
#include "base/win/scoped_com_initializer.h" |
#include "base/win/windows_version.h" |
+#include "content/browser/renderer_host/dwrite_font_proxy_message_filter_win.h" |
#include "content/common/font_cache_dispatcher_win.h" |
#include "content/common/sandbox_win.h" |
#include "sandbox/win/src/sandbox_policy.h" |
@@ -999,6 +1000,10 @@ void RenderProcessHostImpl::CreateMessageFilters() { |
bluetooth_dispatcher_host_ = new BluetoothDispatcherHost(GetID()); |
AddFilter(bluetooth_dispatcher_host_.get()); |
} |
+ |
+#if defined(OS_WIN) |
jam
2015/11/03 00:18:54
there's another OS_WIN above. use that.
Ilya Kulshin
2015/11/03 18:56:21
Done.
|
+ AddFilter(new DWriteFontProxyMessageFilter()); |
+#endif |
} |
void RenderProcessHostImpl::RegisterMojoServices() { |