$OpenBSD: patch-content_common_user_agent_cc,v 1.2 2018/05/04 07:14:57 robert Exp $

Append Linux x86_64 to the user agent because we have to lie ...

Index: content/common/user_agent.cc
--- content/common/user_agent.cc.orig
+++ content/common/user_agent.cc
@@ -131,6 +131,14 @@ std::string BuildOSCpuInfo() {
 #endif
   );  // NOLINT
 
+#if defined(OS_OPENBSD)
+#if defined(__x86_64__)
+  base::StringAppendF(&os_cpu, "; Linux x86_64");
+#else
+  base::StringAppendF(&os_cpu, "; Linux i686");
+#endif
+#endif
+
   return os_cpu;
 }
 
