1 --- chrome/browser/ui/views/frame/browser_non_client_frame_view_factory_views.cc.orig 2022-08-31 12:19:35 UTC 2 +++ chrome/browser/ui/views/frame/browser_non_client_frame_view_factory_views.cc 3 @@ -15,7 +15,7 @@ 4 #include "chrome/browser/ui/views/frame/glass_browser_frame_view.h" 5 #endif 6 7 -#if BUILDFLAG(IS_LINUX) 8 +#if BUILDFLAG(IS_LINUX) || BUILDFLAG(IS_BSD) 9 #include "chrome/browser/ui/views/frame/browser_frame_view_layout_linux.h" 10 #include "chrome/browser/ui/views/frame/browser_frame_view_layout_linux_native.h" 11 #include "chrome/browser/ui/views/frame/browser_frame_view_linux.h" 12 @@ -33,7 +33,7 @@ namespace { 13 std::unique_ptr<OpaqueBrowserFrameView> CreateOpaqueBrowserFrameView( 14 BrowserFrame* frame, 15 BrowserView* browser_view) { 16 -#if BUILDFLAG(IS_LINUX) 17 +#if BUILDFLAG(IS_LINUX) || BUILDFLAG(IS_BSD) 18 auto* linux_ui = ui::LinuxUi::instance(); 19 auto* profile = browser_view->browser()->profile(); 20 auto* theme_service_factory = ThemeServiceFactory::GetForProfile(profile); 21