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

Unified Diff: ui/gfx/render_text_unittest.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 | « ui/gfx/render_text.cc ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: ui/gfx/render_text_unittest.cc
diff --git a/ui/gfx/render_text_unittest.cc b/ui/gfx/render_text_unittest.cc
index 876c8a8e0ba68c97607872a495e4d8ea4e294843..859689b5febce093495cea438fc1b3a3dd0d523d 100644
--- a/ui/gfx/render_text_unittest.cc
+++ b/ui/gfx/render_text_unittest.cc
@@ -2332,7 +2332,7 @@ TEST_F(RenderTextTest, StringFitsOwnWidth) {
#if !defined(OS_WIN)
// Ensure that RenderText examines all of the fonts in its FontList before
// falling back to other fonts.
-TEST_F(RenderTextTest, FontListFallback) {
+TEST_F(RenderTextTest, HarfBuzz_FontListFallback) {
// Double-check that the requested fonts are present.
FontList font_list("Arial, Symbol, 12px");
const std::vector<Font>& fonts = font_list.GetFonts();
@@ -2344,11 +2344,11 @@ TEST_F(RenderTextTest, FontListFallback) {
// "⊕" (CIRCLED PLUS) should be rendered with Symbol rather than falling back
// to some other font that's present on the system.
- scoped_ptr<RenderText> render_text(RenderText::CreateInstance());
- render_text->SetFontList(font_list);
- render_text->SetText(UTF8ToUTF16("\xE2\x8A\x95"));
+ RenderTextHarfBuzz render_text;
+ render_text.SetFontList(font_list);
+ render_text.SetText(UTF8ToUTF16("\xE2\x8A\x95"));
const std::vector<RenderText::FontSpan> spans =
- render_text->GetFontSpansForTesting();
+ render_text.GetFontSpansForTesting();
ASSERT_EQ(static_cast<size_t>(1), spans.size());
EXPECT_EQ("Symbol", spans[0].first.GetFontName());
}
« no previous file with comments | « ui/gfx/render_text.cc ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698