blob: c6b9302e36e3cb80a81c7591b2188ae8aca84883 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
|
--- extensions/common/stack_frame.cc.orig 2019-04-08 08:18:20 UTC
+++ extensions/common/stack_frame.cc
@@ -7,7 +7,11 @@
#include <string>
#include "base/strings/utf_string_conversions.h"
+#if defined(OS_BSD)
+#include <re2/re2.h>
+#else
#include "third_party/re2/src/re2/re2.h"
+#endif
namespace extensions {
|