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

Unified Diff: content/common/view_messages.h

Issue 11363008: Fix for 128506: Random Chinese/Japanese characters are missing in documents printed via the syst... (Closed) Base URL: http://src.chromium.org/svn/trunk/src/
Patch Set: Created 8 years, 1 month 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/common/view_messages.h
===================================================================
--- content/common/view_messages.h (revision 158204)
+++ content/common/view_messages.h (working copy)
@@ -2479,3 +2479,12 @@
IPC_MESSAGE_ROUTED1(ViewHostMsg_MediaPlayerStart,
int /* player_id */)
#endif
+
+#if defined(OS_WIN)
+// Request that the given font characters be loaded by the browser so it's
+// cached by the OS. Please see RenderMessageFilter::OnPreCacheFontCharacters
+// for details.
+IPC_SYNC_MESSAGE_CONTROL2_0(ViewHostMsg_PreCacheFontCharacters,
+ LOGFONT, /* font data */
jam 2012/11/09 23:20:41 nit: font_data per convention of putting the param
edisonn 2012/11/12 13:26:40 Done.
+ std::wstring /* characters */)
+#endif

Powered by Google App Engine
This is Rietveld 408576698