Chromium Code Reviews| 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 |