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

Unified Diff: chrome/renderer/print_web_view_helper_linux.cc

Issue 9111042: Fix RTL and complex script title in print preview header/footer. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 8 years, 11 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: chrome/renderer/print_web_view_helper_linux.cc
diff --git a/chrome/renderer/print_web_view_helper_linux.cc b/chrome/renderer/print_web_view_helper_linux.cc
index 6b6d9e6b43e07ed12894abc92ccb8b7ec177a9cc..5b0ba66e773d10de5a73d726dd309eacebbca97c 100644
--- a/chrome/renderer/print_web_view_helper_linux.cc
+++ b/chrome/renderer/print_web_view_helper_linux.cc
@@ -221,3 +221,13 @@ void PrintWebViewHelper::PrintPageInternal(
if (!metafile->FinishPage())
NOTREACHED() << "metafile failed";
}
+
+#if defined(USE_SKIA)
+// static
+bool PrintWebViewHelper::ConvertTextToGlyphs(SkTypeface* typeface,
+ const string16& text,
+ std::vector<uint16_t>* glyphs) {
+ // TODO(arthurhsu): provide fix for Linux.
+ return false;
+}
+#endif

Powered by Google App Engine
This is Rietveld 408576698