Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(1579)

Unified Diff: content/ppapi_plugin/ppapi_thread.cc

Issue 1327673002: Added GDI font emulation support for Flash. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@warmup_direct_write
Patch Set: Created 5 years, 4 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
Index: content/ppapi_plugin/ppapi_thread.cc
diff --git a/content/ppapi_plugin/ppapi_thread.cc b/content/ppapi_plugin/ppapi_thread.cc
index aa801aafe9be5e2a7801102474124d7f3706bdeb..c7c2de33097b18ced4e508f17fc58437715db78d 100644
--- a/content/ppapi_plugin/ppapi_thread.cc
+++ b/content/ppapi_plugin/ppapi_thread.cc
@@ -51,6 +51,7 @@
#if defined(OS_WIN)
#include "base/win/win_util.h"
#include "base/win/windows_version.h"
+#include "content/public/common/render_font_warmup_win.h"
#include "sandbox/win/src/sandbox.h"
#elif defined(OS_MACOSX)
#include "content/common/sandbox_init_mac.h"
@@ -425,6 +426,13 @@ void PpapiThread::OnLoadPlugin(const base::FilePath& path,
WarmupWindowsLocales(permissions);
+ // If Win32k lockdown is on and loading Flash then we need to patch
+ // its GDI font enumeration code.
palmer 2015/09/11 22:34:16 Nit: The code is admirably clear, so I don't think
+ if (IsWin32kLockdownEnabled() &&
+ permissions.HasPermission(ppapi::PERMISSION_FLASH)) {
+ PatchGdiFontEnumeration(path);
+ }
+
g_target_services->LowerToken();
}
#endif

Powered by Google App Engine
This is Rietveld 408576698