summaryrefslogtreecommitdiff
path: root/www/chromium/files/patch-content_common_user__agent.cc
blob: d842b3145b5d1c2e1cb0be01df0edd0cf6c7ce27 (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	2020-03-16 18:40:32 UTC
+++ content/common/user_agent.cc
@@ -140,6 +140,14 @@ std::string BuildOSCpuInfo(bool include_android_build_
 #endif
   );
 
+#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;
 }