| Index: content/ppapi_plugin/ppapi_thread.cc
|
| diff --git a/content/ppapi_plugin/ppapi_thread.cc b/content/ppapi_plugin/ppapi_thread.cc
|
| index a5fa5915464a86f2bb8a104e357a9f4f67600593..4d8938724ebd42fb96a5e45b1113286e28037521 100644
|
| --- a/content/ppapi_plugin/ppapi_thread.cc
|
| +++ b/content/ppapi_plugin/ppapi_thread.cc
|
| @@ -52,6 +52,7 @@
|
| #if defined(OS_WIN)
|
| #include "base/win/win_util.h"
|
| #include "base/win/windows_version.h"
|
| +#include "content/common/font_warmup_win.h"
|
| #include "sandbox/win/src/sandbox.h"
|
| #elif defined(OS_MACOSX)
|
| #include "content/common/sandbox_init_mac.h"
|
| @@ -406,6 +407,11 @@ void PpapiThread::OnLoadPlugin(const base::FilePath& path,
|
|
|
| WarmupWindowsLocales(permissions);
|
|
|
| + if (!base::win::IsUser32AndGdi32Available() &&
|
| + permissions.HasPermission(ppapi::PERMISSION_FLASH)) {
|
| + PatchGdiFontEnumeration(path);
|
| + }
|
| +
|
| g_target_services->LowerToken();
|
| }
|
| #endif
|
|
|