Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(5747)

Unified Diff: chrome/browser/component_updater/component_updater_configurator.cc

Issue 8344001: OpenBSD patches for chrome/content, split from CR #8275005 (Closed) Base URL: http://git.chromium.org/chromium/src.git@master
Patch Set: Created 9 years, 2 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
Index: chrome/browser/component_updater/component_updater_configurator.cc
diff --git a/chrome/browser/component_updater/component_updater_configurator.cc b/chrome/browser/component_updater/component_updater_configurator.cc
index c53f62aa416b5bb5f96072a361b94e35eb01b042..8117be26748207a85e9cf20ab24ff4567fb75d7a 100644
--- a/chrome/browser/component_updater/component_updater_configurator.cc
+++ b/chrome/browser/component_updater/component_updater_configurator.cc
@@ -70,6 +70,14 @@ const char kExtraInfo[] =
// TODO(cpu): Fix this for ARM.
"os=cros&arch=unknown&prod=chrome&prodversion=";
#endif
+#elif defined(OS_OPENBSD)
Elliot Glaysher 2011/10/18 17:25:44 +cpu Is this OK? Will we barf if this is passed t
Robert Nagy 2011/10/18 17:29:28 Well I do not know, but it is a different platform
+ #if defined(__amd64__)
+ "os=openbsd&arch=x64";
+ #elif defined(__i386__)
+ "os=openbsd&arch=x86";
+ #else
+ "os=openbsd&arch=unknown";
+ #endif
#else
#error "unknown os or architecture"
#endif

Powered by Google App Engine
This is Rietveld 408576698