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
15 lines
390 B
C++
15 lines
390 B
C++
--- components/feedback/anonymizer_tool.cc.orig 2020-03-16 18:40:30 UTC
|
|
+++ components/feedback/anonymizer_tool.cc
|
|
@@ -15,7 +15,11 @@
|
|
#include "base/threading/thread_restrictions.h"
|
|
#include "content/public/browser/browser_thread.h"
|
|
#include "net/base/ip_address.h"
|
|
+#if defined(OS_BSD)
|
|
+#include <re2/re2.h>
|
|
+#else
|
|
#include "third_party/re2/src/re2/re2.h"
|
|
+#endif
|
|
|
|
using re2::RE2;
|
|
|