mirror of
https://git.freebsd.org/ports.git
synced 2025-04-28 09:36:41 -04:00
20 lines
718 B
C++
20 lines
718 B
C++
--- chrome/browser/themes/theme_service.cc.orig 2025-03-05 08:14:56 UTC
|
|
+++ chrome/browser/themes/theme_service.cc
|
|
@@ -71,7 +71,7 @@
|
|
#include "extensions/browser/extension_registry_observer.h"
|
|
#endif
|
|
|
|
-#if BUILDFLAG(IS_LINUX)
|
|
+#if BUILDFLAG(IS_LINUX) || BUILDFLAG(IS_BSD)
|
|
#include "ui/linux/linux_ui.h"
|
|
#include "ui/ozone/public/ozone_platform.h" // nogncheck
|
|
#endif
|
|
@@ -331,7 +331,7 @@ CustomThemeSupplier* ThemeService::GetThemeSupplier()
|
|
}
|
|
|
|
bool ThemeService::ShouldUseCustomFrame() const {
|
|
-#if BUILDFLAG(IS_LINUX)
|
|
+#if BUILDFLAG(IS_LINUX) || BUILDFLAG(IS_BSD)
|
|
if (!ui::OzonePlatform::GetInstance()
|
|
->GetPlatformRuntimeProperties()
|
|
.supports_server_side_window_decorations) {
|