Chromium Code Reviews| Index: content/renderer/render_thread_impl.cc |
| =================================================================== |
| --- content/renderer/render_thread_impl.cc (revision 158204) |
| +++ content/renderer/render_thread_impl.cc (working copy) |
| @@ -878,6 +878,11 @@ |
| Send(new ChildProcessHostMsg_PreCacheFont(log_font)); |
| } |
| +void RenderThreadImpl::PreCacheFontCharacters(const LOGFONT& log_font, |
|
jam
2012/11/09 23:20:41
make this match the order in the header
edisonn
2012/11/12 13:26:40
first function after GetAudioRendererMixerManager
|
| + const std::wstring& str) { |
| + Send(new ViewHostMsg_PreCacheFontCharacters(log_font, str)); |
| +} |
| + |
| void RenderThreadImpl::ReleaseCachedFonts() { |
| Send(new ChildProcessHostMsg_ReleaseCachedFonts()); |
| } |