blob: 9204b2eca9a95196e9a45d30a65bdfe05c6456c2 (
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-08-26 20:49:50 UTC
+++ components/enterprise/watermarking/watermark.cc
@@ -29,7 +29,7 @@ gfx::Font WatermarkFont(int font_size) {
"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",
@@ -40,7 +40,7 @@ gfx::Font::Weight WatermarkFontWeight() {
}
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;
|