mirror of
https://git.FreeBSD.org/ports.git
synced 2025-02-03 11:12:13 +00:00
e3b53fa127
Currently the camera and geolocation do not work. Submitted by: Matthias Wolf Obtained from: https://github.com/gliaskos/freebsd-chromium/pull/173 Obtained from: https://github.com/gliaskos/freebsd-chromium/pull/174 MFH: 2020Q2 Security: https://www.vuxml.org/freebsd/6e3b700a-7ca3-11ea-b594-3065ec8fd3ec.html
12 lines
474 B
C++
12 lines
474 B
C++
--- ui/views/views_delegate.cc.orig 2020-02-03 21:53:14 UTC
|
|
+++ ui/views/views_delegate.cc
|
|
@@ -85,7 +85,7 @@ HICON ViewsDelegate::GetSmallWindowIcon() const {
|
|
bool ViewsDelegate::IsWindowInMetro(gfx::NativeWindow window) const {
|
|
return false;
|
|
}
|
|
-#elif defined(OS_LINUX) && BUILDFLAG(ENABLE_DESKTOP_AURA)
|
|
+#elif (defined(OS_LINUX) || defined(OS_BSD)) && BUILDFLAG(ENABLE_DESKTOP_AURA)
|
|
gfx::ImageSkia* ViewsDelegate::GetDefaultWindowIcon() const {
|
|
return nullptr;
|
|
}
|