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

Unified Diff: content/public/test/mock_render_thread.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/public/test/mock_render_thread.cc
===================================================================
--- content/public/test/mock_render_thread.cc (revision 158204)
+++ content/public/test/mock_render_thread.cc (working copy)
@@ -2,6 +2,8 @@
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
+#include <string>
+
#include "content/public/test/mock_render_thread.h"
#include "base/process_util.h"
@@ -181,6 +183,10 @@
void MockRenderThread::PreCacheFont(const LOGFONT& log_font) {
}
+void MockRenderThread::PreCacheFontCharacters(const LOGFONT& log_font,
+ const std::wstring& str) {
+}
+
void MockRenderThread::ReleaseCachedFonts() {
}

Powered by Google App Engine
This is Rietveld 408576698