mirror of
https://git.freebsd.org/ports.git
synced 2025-04-28 09:36:41 -04:00
29 lines
1.2 KiB
C++
29 lines
1.2 KiB
C++
--- chrome/browser/renderer_preferences_util.cc.orig 2025-03-05 08:14:56 UTC
|
|
+++ chrome/browser/renderer_preferences_util.cc
|
|
@@ -41,7 +41,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"
|
|
@@ -181,7 +181,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()) {
|
|
@@ -204,7 +204,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
|
|
|