9c709a1d6b
Approved by: rene (mentor) Differential Revision: https://reviews.freebsd.org/D39769
29 lines
1.2 KiB
C++
29 lines
1.2 KiB
C++
--- chrome/browser/renderer_preferences_util.cc.orig 2023-04-22 17:45:15 UTC
|
|
+++ chrome/browser/renderer_preferences_util.cc
|
|
@@ -36,7 +36,7 @@
|
|
#include "ui/views/controls/textfield/textfield.h"
|
|
#endif
|
|
|
|
-#if defined(USE_AURA) && BUILDFLAG(IS_LINUX)
|
|
+#if defined(USE_AURA) && (BUILDFLAG(IS_LINUX) || BUILDFLAG(IS_BSD))
|
|
#include "chrome/browser/themes/theme_service.h"
|
|
#include "chrome/browser/themes/theme_service_factory.h"
|
|
#include "ui/linux/linux_ui.h"
|
|
@@ -155,7 +155,7 @@ void UpdateFromSystemSettings(blink::RendererPreferenc
|
|
prefs->caret_blink_interval = views::Textfield::GetCaretBlinkInterval();
|
|
#endif
|
|
|
|
-#if defined(USE_AURA) && BUILDFLAG(IS_LINUX)
|
|
+#if defined(USE_AURA) && (BUILDFLAG(IS_LINUX) || BUILDFLAG(IS_BSD))
|
|
auto* linux_ui_theme = ui::LinuxUiTheme::GetForProfile(profile);
|
|
if (linux_ui_theme) {
|
|
if (ThemeServiceFactory::GetForProfile(profile)->UsingSystemTheme()) {
|
|
@@ -178,7 +178,7 @@ void UpdateFromSystemSettings(blink::RendererPreferenc
|
|
#endif
|
|
|
|
#if BUILDFLAG(IS_LINUX) || BUILDFLAG(IS_CHROMEOS) || BUILDFLAG(IS_ANDROID) || \
|
|
- BUILDFLAG(IS_WIN)
|
|
+ BUILDFLAG(IS_WIN) || BUILDFLAG(IS_BSD)
|
|
content::UpdateFontRendererPreferencesFromSystemSettings(prefs);
|
|
#endif
|
|
|