blob: 8ea37f970d2fca088ec55577b85fca89df4a1dc4 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
|
--- components/enterprise/watermarking/watermark.cc.orig 2025-02-20 09:59:21 UTC
+++ components/enterprise/watermarking/watermark.cc
@@ -31,7 +31,7 @@ gfx::Font WatermarkFont() {
"Segoe UI",
#elif BUILDFLAG(IS_MAC)
"SF Pro Text",
-#elif BUILDFLAG(IS_LINUX)
+#elif BUILDFLAG(IS_LINUX) || BUILDFLAG(IS_BSD)
"Ubuntu",
#elif BUILDFLAG(IS_CHROMEOS)
"Google Sans",
@@ -47,7 +47,7 @@ const gfx::FontList& WatermarkFontList() {
}
gfx::Font::Weight WatermarkFontWeight() {
-#if BUILDFLAG(IS_WIN) || BUILDFLAG(IS_LINUX)
+#if BUILDFLAG(IS_WIN) || BUILDFLAG(IS_LINUX) || BUILDFLAG(IS_BSD)
return gfx::Font::Weight::SEMIBOLD;
#else
return gfx::Font::Weight::MEDIUM;
|