mirror of
https://git.FreeBSD.org/ports.git
synced 2025-01-08 06:48:28 +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
15 lines
505 B
C++
15 lines
505 B
C++
--- extensions/common/image_util.cc.orig 2020-02-03 21:52:47 UTC
|
|
+++ extensions/common/image_util.cc
|
|
@@ -18,7 +18,11 @@
|
|
#include "base/strings/stringprintf.h"
|
|
#include "base/time/time.h"
|
|
#include "base/timer/elapsed_timer.h"
|
|
+#if defined(OS_BSD)
|
|
+#include <re2/re2.h>
|
|
+#else
|
|
#include "third_party/re2/src/re2/re2.h"
|
|
+#endif // defined(OS_BSD)
|
|
#include "third_party/skia/include/core/SkBitmap.h"
|
|
#include "third_party/skia/include/core/SkCanvas.h"
|
|
#include "third_party/skia/include/core/SkColor.h"
|