Index: chrome/installer/util/installation_validator.cc |
diff --git a/chrome/installer/util/installation_validator.cc b/chrome/installer/util/installation_validator.cc |
index 206eb5003c35353ff42b47b24f6a818c12cbbcbb..e8a795d58203eef69ab2fe694aae6e22e33faf95 100644 |
--- a/chrome/installer/util/installation_validator.cc |
+++ b/chrome/installer/util/installation_validator.cc |
@@ -125,7 +125,7 @@ void InstallationValidator::ChromeAppHostRules::AddUninstallSwitchExpectations( |
SwitchExpectations* expectations) const { |
DCHECK(!system_install); |
- // --chrome-app-host must be present. |
+ // --app-host must be present. |
expectations->push_back(std::make_pair(std::string(switches::kChromeAppHost), |
true)); |
// --chrome must not be present. |
@@ -332,12 +332,14 @@ void InstallationValidator::ValidateQuickEnableApplicationHostCommand( |
SwitchExpectations expected; |
- expected.push_back( |
- std::make_pair(std::string(switches::kChromeAppHost), true)); |
- expected.push_back(std::make_pair(std::string(switches::kSystemLevel), |
- false)); |
- expected.push_back(std::make_pair(std::string(switches::kMultiInstall), |
- true)); |
+ expected.push_back(std::make_pair( |
+ std::string(switches::kChromeAppHost), true)); |
+ expected.push_back(std::make_pair( |
+ std::string(switches::kSystemLevel), false)); |
+ expected.push_back(std::make_pair( |
+ std::string(switches::kMultiInstall), true)); |
+ expected.push_back(std::make_pair( |
+ std::string(switches::kEnsureGoogleUpdatePresent), true)); |
ValidateCommandExpectations(ctx, |
the_command, |