Index: chrome/installer/setup/setup_main.cc |
diff --git a/chrome/installer/setup/setup_main.cc b/chrome/installer/setup/setup_main.cc |
index 70832b641e8244870b3d7785a7b632ca9a23f607..f4655564fabdd33c496a1daa018fcb2f0e8da5ae 100644 |
--- a/chrome/installer/setup/setup_main.cc |
+++ b/chrome/installer/setup/setup_main.cc |
@@ -639,6 +639,11 @@ installer::InstallStatus InstallProductsHelper( |
const bool system_install = installer_state.system_install(); |
installer::InstallStatus install_status = installer::UNKNOWN_STATUS; |
+ // Drop to background processing mode if the process was started below the |
+ // normal process priority class. |
+ bool entered_background_mode = installer::AdjustProcessPriority(); |
+ VLOG_IF(1, entered_background_mode) << "Entered background processing mode."; |
+ |
// For install the default location for chrome.packed.7z is in current |
// folder, so get that value first. |
base::FilePath archive(cmd_line.GetProgram().DirName().Append( |