--- electron/shell/browser/native_window_views.h.orig 2025-10-27 17:58:27 UTC +++ electron/shell/browser/native_window_views.h @@ -31,7 +31,7 @@ namespace electron { namespace electron { -#if BUILDFLAG(IS_LINUX) +#if BUILDFLAG(IS_LINUX) || BUILDFLAG(IS_BSD) class ClientFrameViewLinux; class GlobalMenuBarX11; #endif @@ -173,7 +173,7 @@ class NativeWindowViews : public NativeWindow, LPARAM l_param, LRESULT* result); void SetIcon(HICON small_icon, HICON app_icon); -#elif BUILDFLAG(IS_LINUX) +#elif BUILDFLAG(IS_LINUX) || BUILDFLAG(IS_BSD) void SetIcon(const gfx::ImageSkia& icon); #endif @@ -190,7 +190,7 @@ class NativeWindowViews : public NativeWindow, SkColor overlay_button_color() const { return overlay_button_color_; } SkColor overlay_symbol_color() const { return overlay_symbol_color_; } -#if BUILDFLAG(IS_LINUX) +#if BUILDFLAG(IS_LINUX) || BUILDFLAG(IS_BSD) // returns the ClientFrameViewLinux iff that is our FrameView type, // nullptr otherwise. ClientFrameViewLinux* GetClientFrameViewLinux(); @@ -268,7 +268,7 @@ class NativeWindowViews : public NativeWindow, // events from resizing the window. extensions::SizeConstraints old_size_constraints_; -#if BUILDFLAG(IS_LINUX) +#if BUILDFLAG(IS_LINUX) || BUILDFLAG(IS_BSD) std::unique_ptr global_menu_bar_; #endif