Index: chrome/installer/gcapi/gcapi.cc |
diff --git a/chrome/installer/gcapi/gcapi.cc b/chrome/installer/gcapi/gcapi.cc |
index ef3c9636ba667478329489a8be40832bc965f139..43b76c7170e0a3f74e4b147270cf884bb7e3c502 100644 |
--- a/chrome/installer/gcapi/gcapi.cc |
+++ b/chrome/installer/gcapi/gcapi.cc |
@@ -391,11 +391,11 @@ bool GetGoogleChromePath(base::FilePath* chrome_exe_path) { |
// Now grab the uninstall string from the appropriate ClientState key |
// and use that as the base for a path to chrome.exe. |
- *chrome_exe_path = |
- chrome_launcher_support::GetChromePathForInstallationLevel( |
- install_key == HKEY_LOCAL_MACHINE ? |
- chrome_launcher_support::SYSTEM_LEVEL_INSTALLATION : |
- chrome_launcher_support::USER_LEVEL_INSTALLATION); |
+ *chrome_exe_path = chrome_launcher_support::GetChromePathForInstallationLevel( |
+ install_key == HKEY_LOCAL_MACHINE |
+ ? chrome_launcher_support::SYSTEM_LEVEL_INSTALLATION |
+ : chrome_launcher_support::USER_LEVEL_INSTALLATION, |
+ false /* is_sxs */); |
return !chrome_exe_path->empty(); |
} |