Index: content/common/view_messages.h |
=================================================================== |
--- content/common/view_messages.h (revision 158204) |
+++ content/common/view_messages.h (working copy) |
@@ -5,6 +5,8 @@ |
// IPC messages for page rendering. |
// Multiply-included message file, hence no include guard. |
+ #include <string> |
jam
2012/11/09 01:44:14
this is redundant :) it's a very basic include tha
edisonn
2012/11/09 17:48:57
removed it (but lint warned me to "include what yo
|
+ |
#include "base/process.h" |
#include "base/shared_memory.h" |
#include "content/common/content_export.h" |
@@ -2479,3 +2481,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 TODO!?! |
jam
2012/11/09 01:44:14
?
|
+// for details. |
+IPC_SYNC_MESSAGE_CONTROL2_0(ViewHostMsg_PreCacheFontCharacters, |
+ LOGFONT, /* font data */ |
+ std::wstring /* characters */) |
+#endif |