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

Unified Diff: chrome/installer/setup/install_worker.cc

Issue 2306933002: Remove wow_helper. (Closed)
Patch Set: Created 4 years, 3 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
« no previous file with comments | « chrome/installer/mini_installer/chrome.release ('k') | chrome/installer/setup/setup_constants.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: chrome/installer/setup/install_worker.cc
diff --git a/chrome/installer/setup/install_worker.cc b/chrome/installer/setup/install_worker.cc
index 0e744e52520132b1ee567464a78c6419c5a42526..8864ddba89c42cdc59e40b8fc5882a0fef1d1bee 100644
--- a/chrome/installer/setup/install_worker.cc
+++ b/chrome/installer/setup/install_worker.cc
@@ -331,20 +331,6 @@ void AddChromeWorkItems(const InstallationState& original_state,
new_chrome_exe.value());
}
- // Extra executable for 64 bit systems.
- // NOTE: We check for "not disabled" so that if the API call fails, we play it
- // safe and copy the executable anyway.
- // NOTE: the file wow_helper.exe is only needed for Vista and below.
- if (base::win::OSInfo::GetInstance()->wow64_status() !=
- base::win::OSInfo::WOW64_DISABLED &&
- base::win::GetVersion() <= base::win::VERSION_VISTA) {
- install_list->AddMoveTreeWorkItem(
- src_path.Append(installer::kWowHelperExe).value(),
- target_path.Append(installer::kWowHelperExe).value(),
- temp_path.value(),
- WorkItem::ALWAYS_MOVE);
- }
-
// Install kVisualElementsManifest if it is present in |src_path|. No need to
// make this a conditional work item as if the file is not there now, it will
// never be.
« no previous file with comments | « chrome/installer/mini_installer/chrome.release ('k') | chrome/installer/setup/setup_constants.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698