mirror of
https://git.freebsd.org/ports.git
synced 2025-06-28 08:00:31 -04:00
- Use https in WWW and MASTER_SITES - Sort ONLY_FOR_ARCHS, USES, USE_GNOME and GN_ARGS - Put in correct place MAKE_ENV+= V=1 variable - Use LLD linker by default for supported archs - Fix DEBUG option - Fix gpu_info_collector.cc warning: control may reach end of non-void function [-Wreturn-type] - Get rid of multiple definition errors Changelog: https://chromium.googlesource.com/chromium/src/+log/58.0.3029.110..59.0.3071.104?pretty=fuller&n=10000 MFH: 2017Q2 Security: https://www.vuxml.org/freebsd/52f4b48b-4ac3-11e7-99aa-e8e0b747a45a.html Security: https://www.vuxml.org/freebsd/f53dd5cc-527f-11e7-a772-e8e0b747a45a.html
11 lines
462 B
C++
11 lines
462 B
C++
--- ui/views/views_delegate.cc.orig 2017-06-05 19:03:30 UTC
|
|
+++ ui/views/views_delegate.cc
|
|
@@ -85,7 +85,7 @@ HICON ViewsDelegate::GetDefaultWindowIcon() const {
|
|
bool ViewsDelegate::IsWindowInMetro(gfx::NativeWindow window) const {
|
|
return false;
|
|
}
|
|
-#elif defined(OS_LINUX) && !defined(OS_CHROMEOS)
|
|
+#elif (defined(OS_LINUX) && !defined(OS_CHROMEOS)) || defined(OS_FREEBSD)
|
|
gfx::ImageSkia* ViewsDelegate::GetDefaultWindowIcon() const {
|
|
return nullptr;
|
|
}
|