| Index: chrome/installer/util/helper.cc
|
| ===================================================================
|
| --- chrome/installer/util/helper.cc (revision 273136)
|
| +++ chrome/installer/util/helper.cc (working copy)
|
| @@ -17,14 +17,7 @@
|
| base::FilePath GetChromeInstallPath(bool system_install,
|
| BrowserDistribution* dist) {
|
| base::FilePath install_path;
|
| -#if defined(_WIN64)
|
| - // TODO(wfh): Place Chrome binaries into DIR_PROGRAM_FILESX86 until the code
|
| - // to support moving the binaries is added.
|
| - int key =
|
| - system_install ? base::DIR_PROGRAM_FILESX86 : base::DIR_LOCAL_APP_DATA;
|
| -#else
|
| int key = system_install ? base::DIR_PROGRAM_FILES : base::DIR_LOCAL_APP_DATA;
|
| -#endif
|
| if (PathService::Get(key, &install_path)) {
|
| install_path = install_path.Append(dist->GetInstallSubDir());
|
| install_path = install_path.Append(kInstallBinaryDir);
|
|
|