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

Unified Diff: content/utility/utility_thread_impl.cc

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, 2 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/utility/utility_thread_impl.cc
===================================================================
--- content/utility/utility_thread_impl.cc (revision 158204)
+++ content/utility/utility_thread_impl.cc (working copy)
@@ -62,6 +62,11 @@
Send(new ChildProcessHostMsg_PreCacheFont(log_font));
}
+void UtilityThreadImpl::PreCacheFontCharacters(const LOGFONT& log_font,
+ const std::wstring& str) {
+ Send(new ChildProcessHostMsg_PreCacheFontCharacters(log_font, str));
+}
+
void UtilityThreadImpl::ReleaseCachedFonts() {
Send(new ChildProcessHostMsg_ReleaseCachedFonts());
}

Powered by Google App Engine
This is Rietveld 408576698