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

Unified Diff: ui/gfx/render_text.cc

Issue 721843002: Disable RTHB on Mac when TOOLKIT_VIEWS isn't defined (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: use rthb in test Created 6 years, 1 month 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
« no previous file with comments | « no previous file | ui/gfx/render_text_unittest.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: ui/gfx/render_text.cc
diff --git a/ui/gfx/render_text.cc b/ui/gfx/render_text.cc
index 1ca874a0e461f2014c5568c4fcfeb0802bba7fcc..87e650b8cf3107637f407cad49850905f17fac68 100644
--- a/ui/gfx/render_text.cc
+++ b/ui/gfx/render_text.cc
@@ -398,9 +398,14 @@ RenderText::~RenderText() {
}
RenderText* RenderText::CreateInstance() {
- return CommandLine::ForCurrentProcess()->HasSwitch(
- switches::kDisableHarfBuzzRenderText) ? CreateNativeInstance() :
- new RenderTextHarfBuzz;
+#if defined(OS_MACOSX) && !defined(TOOLKIT_VIEWS)
+ static const bool use_harfbuzz = CommandLine::ForCurrentProcess()->
+ HasSwitch(switches::kEnableHarfBuzzRenderText);
+#else
+ static const bool use_harfbuzz = !CommandLine::ForCurrentProcess()->
+ HasSwitch(switches::kDisableHarfBuzzRenderText);
+#endif
+ return use_harfbuzz ? new RenderTextHarfBuzz : CreateNativeInstance();
}
void RenderText::SetText(const base::string16& text) {
« no previous file with comments | « no previous file | ui/gfx/render_text_unittest.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698