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

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: 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 | no next file » | 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..6f6ce27eb008203bacf18b692e5e796d9fa988a4 100644
--- a/ui/gfx/render_text.cc
+++ b/ui/gfx/render_text.cc
@@ -398,9 +398,13 @@ RenderText::~RenderText() {
}
RenderText* RenderText::CreateInstance() {
+#if defined(OS_MACOSX) && !defined(TOOLKIT_VIEWS)
+ return CreateNativeInstance();
msw 2014/11/12 18:55:21 Allow HarfBuzz with switches::kEnableHarfBuzzRende
ckocagil 2014/11/12 19:23:01 Done.
+#else
return CommandLine::ForCurrentProcess()->HasSwitch(
msw 2014/11/12 18:55:21 optional nit: cache the command line value in a st
ckocagil 2014/11/12 19:23:01 Done.
switches::kDisableHarfBuzzRenderText) ? CreateNativeInstance() :
new RenderTextHarfBuzz;
+#endif
}
void RenderText::SetText(const base::string16& text) {
« no previous file with comments | « no previous file | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698