summaryrefslogtreecommitdiff
path: root/www/chromium/files/patch-content_common_user_agent.cc
blob: 834a1691682fbd90e437d0a12bc00d6ceb6f525d (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
--- content/common/user_agent.cc.orig	2017-12-23 22:30:16.333353000 +0100
+++ content/common/user_agent.cc	2017-12-23 22:32:27.429827000 +0100
@@ -131,6 +131,14 @@
 #endif
   );  // NOLINT
 
+#if defined(OS_BSD)
+#if defined(__x86_64__)
+  base::StringAppendF(&os_cpu, "; Linux x86_64");
+#else
+  base::StringAppendF(&os_cpu, "; Linux i686");
+#endif
+#endif
+
   return os_cpu;
 }