| Index: base/sys_info_win.cc | 
| =================================================================== | 
| --- base/sys_info_win.cc	(revision 156435) | 
| +++ base/sys_info_win.cc	(working copy) | 
| @@ -75,8 +75,18 @@ | 
|  | 
| // static | 
| std::string SysInfo::CPUArchitecture() { | 
| -  // TODO: Make this vary when we support any other architectures. | 
| -  return "x86"; | 
| +  win::OSInfo::WindowsArchitecture arch = | 
| +      win::OSInfo::GetInstance()->architecture(); | 
| +  switch (arch) { | 
| +    case X86_ARCHITECTURE: | 
| +      return "x86"; | 
| +    case X64_ARCHITECTURE: | 
| +      return "x86_64"; | 
| +    case IA64_ARCHITECTURE: | 
| +      return "ia64"; | 
| +    default: | 
| +      return ""; | 
| +  } | 
| } | 
|  | 
| // static | 
|  |